web-dev-qa-db-fra.com

Angular 6 - NullInjectorError: aucun fournisseur pour HttpClient dans les tests unitaires

J'importe et j'utilise HttpClient dans un service comme suit:

import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';

@Injectable({
    providedIn: 'root',
})
export class MyService {
    constructor(private http: HttpClient) { }

    getData() {
        return this.http.get("url...");
    }
}

Cependant, lorsque je lance ng test Pour mes tests unitaires , et lorsque ces tests utilisent le service, le message d'erreur suivant s'affiche:

Error: StaticInjectorError(DynamicTestModule)[HttpClient]: StaticInjectorError(Platform: core)[HttpClient]: NullInjectorError: No provider for HttpClient!

Le documentation angulaire 6 sur HTTP dit simplement de faire ce que j'ai fait ci-dessus.

7
Kingamere
import { TestBed } from '@angular/core/testing';
import { HttpClientTestingModule, HttpTestingController } from '@angular/common/http/testing';
import {HttpClientModule} from '@angular/common/http';
import { myService } from './myservice';


describe('myService', () => {

      beforeEach(() => TestBed.configureTestingModule({
        imports: [HttpClientTestingModule], 
        providers: [myService]
      }));

       it('should be created', () => {
        const service: myService = TestBed.get(myService);
        expect(service).toBeTruthy();
       });

       it('should have getData function', () => {
        const service: myService = TestBed.get(myService);
        expect(service.getData).toBeTruthy();
       });

    });
12
user9964622

vous devez ajouter HttpClient dans les imports de votre module où votre composant est déclaré

@NgModule({
  declarations: [
    MyComponent
  ],
  imports: [
    BrowserModule,
    FormsModule,
    HttpClientModule
  ],
  providers: []
})
export class AppModule { }