summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.service.spec.ts
blob: 03804c27422af82e9b0fb377d9b2422d273bb7d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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();
  });
});