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