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