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