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