mtas-tv-frontend/src/app/display/slide-show/slide-show.component.spec.ts

26 lines
650 B
TypeScript
Raw Normal View History

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();
});
});