meals-made-easy-app/src/app/recipe-view/recipe-view-card/recipe-view-card.component.spec.ts
2025-12-15 12:32:26 -06:00

23 lines
627 B
TypeScript

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