blob: d35b3973a16b7b241baeb1e012a1652f83e08750 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { RecipesListComponent } from './recipes-list.component';
describe('RecipesListComponent', () => {
let component: RecipesListComponent;
let fixture: ComponentFixture<RecipesListComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [RecipesListComponent],
}).compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(RecipesListComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
|