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