import { ComponentFixture, TestBed } from '@angular/core/testing'; import { IngredientDialog } from './ingredient-dialog'; describe('IngredientDialog', () => { let component: IngredientDialog; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [IngredientDialog], }).compileComponents(); fixture = TestBed.createComponent(IngredientDialog); component = fixture.componentInstance; await fixture.whenStable(); }); it('should create', () => { expect(component).toBeTruthy(); }); });