23 lines
627 B
TypeScript
23 lines
627 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { RecipeCardGrid } from './recipe-card-grid';
|
|
|
|
describe('RecipeCardGrid', () => {
|
|
let component: RecipeCardGrid;
|
|
let fixture: ComponentFixture<RecipeCardGrid>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [RecipeCardGrid],
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(RecipeCardGrid);
|
|
component = fixture.componentInstance;
|
|
await fixture.whenStable();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|