How override Provider in Angular 5 for only one test?

As of angular 6 I noticed that overrideProvider works with the useValue property. So in order to make it work try something like: class MockRequestService1 { … } class MockRequestService2 { … } then write you TestBed like: // example with injected service TestBed.configureTestingModule({ // Provide the service-under-test providers: [ SomeService, { provide: SomeInjectedService, useValue: … Read more

tech