23 lines
627 B
TypeScript
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();
|
|
});
|
|
});
|