2018-06-13 18:34:10 +02:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { ProjectorComponent } from './projector.component';
|
2019-01-31 13:40:27 +01:00
|
|
|
import { E2EImportsModule } from 'e2e-imports.module';
|
2018-06-13 18:34:10 +02:00
|
|
|
|
|
|
|
describe('ProjectorComponent', () => {
|
2018-06-16 18:05:46 +02:00
|
|
|
let component: ProjectorComponent;
|
|
|
|
let fixture: ComponentFixture<ProjectorComponent>;
|
2018-06-13 18:34:10 +02:00
|
|
|
|
2018-06-16 18:05:46 +02:00
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2019-01-31 13:40:27 +01:00
|
|
|
imports: [E2EImportsModule]
|
2018-06-19 16:55:50 +02:00
|
|
|
}).compileComponents();
|
2018-06-16 18:05:46 +02:00
|
|
|
}));
|
2018-06-13 18:34:10 +02:00
|
|
|
|
2018-06-16 18:05:46 +02:00
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(ProjectorComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
2018-06-13 18:34:10 +02:00
|
|
|
|
2018-06-16 18:05:46 +02:00
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
2018-06-13 18:34:10 +02:00
|
|
|
});
|