import { TestBed } from '@angular/core/testing'; import { ReportListService } from './report-list.service'; import { HttpClientTestingModule } from '@angular/common/http/testing'; describe('ReportListService', () => { beforeEach(() => TestBed.configureTestingModule({ imports: [HttpClientTestingModule] })); it('should be created', () => { const service: ReportListService = TestBed.get(ReportListService); expect(service).toBeTruthy(); }); });