You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Daidokoro/daidokoro/src/test/service/recette.service.spec.ts

17 lines
374 B

import { TestBed } from '@angular/core/testing';
import { RecipeService } from '../../app/service/recipe.service';
describe('RecetteService', () => {
let service: RecipeService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(RecipeService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});