import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { PdfViewerModule } from 'ng2-pdf-viewer'; import { E2EImportsModule } from '../../../../e2e-imports.module'; import { MediafileSlideComponent } from './mediafile-slide.component'; describe('MediafileSlideComponent', () => { let component: MediafileSlideComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ imports: [E2EImportsModule, PdfViewerModule], declarations: [MediafileSlideComponent] }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(MediafileSlideComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });