24 lines
614 B
TypeScript
24 lines
614 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { SearchBoxComponent } from './search-box.component';
|
|
|
|
describe('SearchBoxComponent', () => {
|
|
let component: SearchBoxComponent;
|
|
let fixture: ComponentFixture<SearchBoxComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [SearchBoxComponent]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(SearchBoxComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|