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

26 lines
758 B
TypeScript

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