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