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