meals-made-easy-app/src/app/shared/components/recipe-card-grid/recipe-card-grid.spec.ts
2026-01-11 13:32:46 -06:00

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();
});
});