uoa-repository-manager-service/app/features/administration/application-level-exceptions/application-level-search-form/application-level-search-fo...

26 lines
794 B
TypeScript

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