uoa-repository-manager-service/app/features/administration/forms/application-level-form/application-level-form.comp...

26 lines
751 B
TypeScript

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