OpenSlides/client/src/app/slides/mediafiles/mediafile/mediafile-slide.component.spec.ts

29 lines
900 B
TypeScript
Raw Normal View History

2019-02-15 12:01:16 +01:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2019-02-27 08:43:51 +01:00
import { PdfViewerModule } from 'ng2-pdf-viewer';
2019-02-15 12:01:16 +01:00
import { E2EImportsModule } from '../../../../e2e-imports.module';
import { MediafileSlideComponent } from './mediafile-slide.component';
2019-02-15 12:01:16 +01:00
describe('MediafileSlideComponent', () => {
let component: MediafileSlideComponent;
let fixture: ComponentFixture<MediafileSlideComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
2019-02-27 08:43:51 +01:00
imports: [E2EImportsModule, PdfViewerModule],
2019-02-15 12:01:16 +01:00
declarations: [MediafileSlideComponent]
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(MediafileSlideComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});