I'm building some unit tests for a service in Angular2.
Within my Service I have the following code:
var hash: string;
hash = this.window.location.hash;
However when I run a test which contains this code, it will fail.
It'd be great to utilise all the features of Window, but as I'm using PhantomJs, I don't think this is possible (I have also tried Chrome which yields the same results).
In AngularJs, I would have resorted to mocking $Window (or at least the properties in question), but as there is not a lot of documentation for Angular2 unit testing I'm not sure how to do this.
Can anyone help?
As @estus mentioned in the comment, you'd be better getting the hash from the Router. But to answer your question directly, you need to inject window into the place you're using it, so that during testing you can mock it.
First, register window with the angular2 provider - probably somewhere global if you use this all over the place:
This tells angular when the dependency injection asks for the type
Window
, it should return the globalwindow
.Now, in the place you're using it, you inject this into your class instead of using the global directly:
Now you're ready to mock that value in your test.
After RC4 method
provide()
its depracated, so the way to handle this after RC4 is:It take me a while to figure it out, how it works.
In Angular 2 you can use the
@Inject()
function to inject the window object by naming it using a string token, like thisIn the
@NgModule
you must then provide it using the same string:Then you can also mock it using the token string
This worked in Angular 2.1.1, the latest as of 2016-10-28.
Does not work with Angular 4.0.0 AOT. https://github.com/angular/angular/issues/15640