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; await fixture.whenStable(); }); it('should create', () => { expect(component).toBeTruthy(); }); });