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