I was also facing similar issue by doing below changes, it worked for me
In app.modules.ts
import {HttpClientModule} from '@angular/common/http'
and in corresponding service class
import { HttpClient } from '@angular/common/http'
constructor should look like as below
constructor(private http: HttpClient, private xyz: xyzService) {}
In test file
import { HttpClientTestingModule } from '@angular/common/http/testing'
beforeEach(() => TestBed.configureTestingModule({
imports: [HttpClientTestingModule]
}));