meals-made-easy-app/src/app/shared/components/recipe-edit-form/ingredient-dialog/ingredient-dialog.spec.ts
2026-02-16 17:21:46 -06:00

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();
});
});