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