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