I had this problem in the past while using older versions of react-router which I solved using: stubRouterContext + a hacky way to access the component instance (using refs: https://github.com/reactjs/react-router/issues/1140#issuecomment-113174774)
I thought this would improve in the future but I am hitting the same wall with react-router 2.0 (I am not saying this is a problem with react-router but since it uses context, it affects my tests). So, I have a component that uses context to push new state into the url this.context.router.push(...)
which is the way to go now
https://github.com/reactjs/react-router/blob/master/upgrade-guides/v2.0.0.md#programmatic-navigation
I am telling jest.dontMock('react-router')
but my test will fail with:
TypeError: Cannot read property 'push' of undefined
This happens because the instance returned by TestUtils.renderIntoDocument
will have:
context: Object { router: undefined }
Now, what is the real problem here? Is it Jest? I'm pretty sure I am not the only one who encounters this and since stubRouterContext it's not in the official docs of react-router anymore, is there any broad accepted solution for this?
How would I make the test to work? Which is basically having the correct context and being able to access everything from the component instance returned by TestUtils.renderIntoDocument
.
I am using react 0.14.7, jest-cli 0.8.2 and react-router 2.0.
Here's the setup that I've ended up with for my context dependent components (stripped down for simplicity, of course):