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