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