I was expecting to use `mockComponent` like this: ``` MyMockedComponentClass = React.addons.TestUtils.mockComponent(MyComponentClass); ``` https://github.com/facebook/react/blob/v0.12.0/src/test/ReactTestUtils.js#L244 But after looking at the source of `mockComponent` it requires to be passed a `Jest` mock. I already use `node-jasmine` as my test runner. Why does this depend on Jest?