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