Files
quartz-manager/quartz-manager-frontend/src/app/views/error/genericError.component.spec.ts
2022-11-05 20:28:56 +01:00

26 lines
667 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import {GenericErrorComponent} from './genericError.component';
describe('GenericComponent', () => {
let component: GenericErrorComponent;
let fixture: ComponentFixture<GenericErrorComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ GenericErrorComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(GenericErrorComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});