/* tslint:disable:no-unused-variable */ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { By } from '@angular/platform-browser'; import { DebugElement } from '@angular/core'; import { PdfComponent } from './pdf.component'; describe('PdfComponent', () => { let component: PdfComponent; let fixture: ComponentFixture<PdfComponent>; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ PdfComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(PdfComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });