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

27 lines
832 B
TypeScript
Raw Normal View History

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