mtas-tv-frontend/src/app/display/slide-show/slide-show.component.spec.ts
Dávid Danyi e969edb26c * settings
* display
* dashboard
* self-updater
* timers in app component
2018-04-13 18:17:11 +02:00

26 lines
650 B
TypeScript

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