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