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