2019-08-12 10:41:00 +02:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2019-11-23 14:30:19 +01:00
|
|
|
import { SelectorComponent } from './selector.component';
|
2019-08-12 10:41:00 +02:00
|
|
|
|
2019-11-23 14:30:19 +01:00
|
|
|
describe('SelectorComponent', () => {
|
|
|
|
let component: SelectorComponent;
|
|
|
|
let fixture: ComponentFixture<SelectorComponent>;
|
2019-08-12 10:41:00 +02:00
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2019-11-23 14:30:19 +01:00
|
|
|
declarations: [ SelectorComponent ]
|
2019-08-12 10:41:00 +02:00
|
|
|
})
|
|
|
|
.compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2019-11-23 14:30:19 +01:00
|
|
|
fixture = TestBed.createComponent(SelectorComponent);
|
2019-08-12 10:41:00 +02:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|