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