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