So, in version RC5 of Angular2, they deprecated the HTTP_PROVIDERS
and introduced the HttpModule
. For my application code, this is working fine, but I'm struggling to make the change in my Jasmine tests.
Here's what I'm currently doing in my specs, but since HTTP_PROVIDERS is deprecated, what should I be doing now? Is there something I need to provide instead of HTTP_PROVIDERS? What is the correct way to do this in the RC5 world?
beforeEach(() => {
reflectiveInjector = ReflectiveInjector.resolveAndCreate([
HTTP_PROVIDERS,
...
]);
//other code here...
});
it("should....", () => { ... });
I run into a similar problem when updating from pre-RC5 code to RC6. To expand on Joe W's answer above, I replaced this code:
with this RC6 code (which, I guess, should also work for RC5):
The now deprecated HTTP_PROVIDERS is replaced with the HttpModule is RC5.
Within your describe block, add the TestBed.configureTestingModule with the requisite imports and providers array attributes like below:
This is how I got my unit service tests to work with RC5, hopefully this won't have to change between the next release candidates and the final version. If you are like me, you are probably frustrated with the amount of deprecation that is going on between release candidates. I hope things stabilize soon!