23 lines
605 B
TypeScript
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();
|
|
});
|
|
});
|