import { TestBed } from '@angular/core/testing'; import { RunService } from './run.service'; import { HttpClientTestingModule } from '@angular/common/http/testing'; import { HttpClient } from '@angular/common/http'; import { environment } from 'src/environments/environment'; describe('RunService', () => { let service: RunService; beforeEach(() => { TestBed.configureTestingModule({ imports: [HttpClientTestingModule], providers: [HttpClient, HttpClientTestingModule, RunService] }); service = TestBed.get(RunService); }); it('should be created', () => { const service: RunService = TestBed.get(RunService); expect(service).toBeTruthy(); }); it('should getReportData', () => { service.getReportData("test").subscribe((res) => { expect(res).toBe(environment); }); }); it('should getReportDataWithFormFields', () => { service.getReportDataWithFormFields("just", "testing").subscribe((res) => { expect(res).toBe(environment); }); }); it('should getDefinitionPageDetails', () => { service.getDefinitionPageDetails(1).subscribe((res) => { expect(res).toBe(environment); }); }); it('should refreshFormFields', () => { service.refreshFormFields("just", "testing").subscribe((res) => { expect(res).toBe(environment); }); }); it('should getFormFieldGroupsData', () => { service.getFormFieldGroupsData("test").subscribe((res) => { expect(res).toBe(environment); }); }); it('should downloadReportExcel', () => { service.downloadReportExcel("test").subscribe((res) => { expect(res).toBe(new Blob); }); }); });