admin管理员组文章数量:1344413
I have a ponent which uses axios
within ponentDidMount
to retrieve data from the server. When using Jest / Enzyme for unit testing the ponent, the tests fail with a network error.
How do I mock ponentDidMount
so that the axios
call to the server does not happen?
The ponent in question uses React DnD and is a DragDropContext
.
class Board extends Component {
ponentDidMount() {
this.load_data();
}
load_data = () => {
// axios server calls here
}
}
export default DragDropContext(HTML5Backend)(Board);
Example test:
it('should do something', () => {
const board = shallow(<Board />);
// get the boardInstance because board is wrapped in Reactdnd DragDropContext
const boardInstance = board.dive().instance();
boardInstance.callSomeMethodToTestIt();
expect(testSomething);
}
So I just need to mock ponentDidMount
or load_data
so that it doesn't try to call the server. If the load_data
method was being passed in as a prop, I could simply set that prop to jest.fn()
. However this is my top level ponent which does not receive any props.
I have a ponent which uses axios
within ponentDidMount
to retrieve data from the server. When using Jest / Enzyme for unit testing the ponent, the tests fail with a network error.
How do I mock ponentDidMount
so that the axios
call to the server does not happen?
The ponent in question uses React DnD and is a DragDropContext
.
class Board extends Component {
ponentDidMount() {
this.load_data();
}
load_data = () => {
// axios server calls here
}
}
export default DragDropContext(HTML5Backend)(Board);
Example test:
it('should do something', () => {
const board = shallow(<Board />);
// get the boardInstance because board is wrapped in Reactdnd DragDropContext
const boardInstance = board.dive().instance();
boardInstance.callSomeMethodToTestIt();
expect(testSomething);
}
So I just need to mock ponentDidMount
or load_data
so that it doesn't try to call the server. If the load_data
method was being passed in as a prop, I could simply set that prop to jest.fn()
. However this is my top level ponent which does not receive any props.
-
1
What if you just reassign it via
board.instance().ponentDidMount = jest.fn()
? – user9539019 Commented May 15, 2018 at 7:30 -
If you are using enzyme you can leverage
mount()
– Adarsh Commented May 15, 2018 at 7:32
2 Answers
Reset to default 7With the new update to enzyme, lifecycle methods are enabled by default. (https://airbnb.io/enzyme/docs/guides/migration-from-2-to-3.html#lifecycle-methods)
However, you can disable them in with shallow rendering as such:
const board = shallow(<Board />, { disableLifecycleMethods: true });
docs: https://airbnb.io/enzyme/docs/api/shallow.html#shallownode-options--shallowwrapper
Lifecyle methods do not defaultly work with shallow, you need to add a flag with shallow
const board = shallow(<Board />, { lifecycleExperimental: true });
Before that you can create a spy on ponentDidMount
to check if it was called like
const spyCDM = jest.spyOn(Board.prototype, 'ponentDidMount');
and to prevent the axios request from hitting the server , you can mock the axios call using moxios
本文标签: javascriptMock componentDidMount lifecycle method for testingStack Overflow
版权声明:本文标题:javascript - Mock componentDidMount lifecycle method for testing - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743703091a2524655.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论