I recently wanted to test that some custom method gets conditionally called in the componentDidMount
method of a React component.
componentDidMount() {
if (this.props.initOpen) {
this.methodName();
}
}
I'm using Jest as my testing framework, which includes jest.fn()
for mocks/spies. I've read that this would be fairly trivial to test with Sinon, by doing something like the following:
sinon.spy(Component.prototype, "methodName");
const wrapper = mount(<Component {...props} />);
expect(wrapper.instance().methodName).toHaveBeenCalled();
I'm trying to recreate this with Jest like so:
Component.prototype.methodName = jest.fn();
const wrapper = mount(<Component {...props} />);
expect(wrapper.instance().methodName).toHaveBeenCalled();
This code fails and throws the following error:
jest.fn() value must be a mock function or spy.
Received:
function: [Function bound mockConstructor]
Is it possible to test this functionality with Jest? And if so, how?
The key is using jests
spyOn
method. It should be like this:As found here e.g.: Test if function is called react and enzyme
Please note, it is also best practice to clear the spied function after each test run
https://facebook.github.io/jest/docs/en/jest-object.html#jestclearallmocks
I know its a bit late, but i came across this and would suggest that to test
componentDidMount
initiates the call to your nested method that your test should look something like:Module
Test - Good
If you call
componentDidMount
then your assertion thatmethodName
was called viacomponentDidMount
is more valid.Test - Bad
By writing the test like this - you call the method and then assert that it was called. Which of course it will have given you just called it.