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