uoa-repository-manager-service/app/features/administration/application-level-exceptions/application-level-exception...

26 lines
793 B
TypeScript

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