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

26 lines
765 B
TypeScript

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