import { TestBed, async } from '@angular/core/testing'; import { RouterTestingModule } from '@angular/router/testing'; // import { AppComponent } from './app.component'; import { ReportComponent } from './report.component'; import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; import { HttpClientTestingModule } from '@angular/common/http/testing'; describe('ReportComponent', () => { beforeEach(async(() => { TestBed.configureTestingModule({ schemas: [CUSTOM_ELEMENTS_SCHEMA], imports: [ RouterTestingModule, HttpClientTestingModule ], declarations: [ ReportComponent ], }).compileComponents(); })); it('should create the app', () => { const fixture = TestBed.createComponent(ReportComponent); const app = fixture.debugElement.componentInstance; expect(app).toBeTruthy(); }); });