funky-framadate-front/src/app/ui/selector/selector.component.spec.ts

26 lines
642 B
TypeScript
Raw Normal View History

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