meals-made-easy-app/src/app/recipes-page/recipes-page.spec.ts
2025-12-15 12:32:26 -06:00

23 lines
605 B
TypeScript

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