dnet-applications/frontends/dnet-is-application/src/app/wf-history/wf-history.component.spec.ts

24 lines
621 B
TypeScript

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