Real unit test (isolation, no children render)
Calls:
- constructor
- render
Calls:
- componentWillReceiveProps
- shouldComponentUpdate
- componentWillUpdate
- render
Calls:
- componentWillUnmount
The only way to test componentDidMount and componentDidUpdate. Full rendering including child components. Requires a DOM (jsdom, domino). More constly in execution time. If react is included before JSDOM, it can require some tricks:
require('fbjs/lib/ExecutionEnvironment').canUseDOM = true;
Calls:
- constructor
- render
- componentDidMount
Calls:
- componentWillReceiveProps
- shouldComponentUpdate
- componentWillUpdate
- render
- componentDidUpdate
Calls:
- componentWillUnmount
only calls render but renders all children.
So my rule of thumbs is:
- Always begin with shallow
- If componentDidMount or componentDidUpdate should be tested, use mount
- If you want to test component lifecycle and children behavior, use mount
- If you want to test children rendering with less overhead than mount and you are not interested in lifecycle methods, use render
There seems to be a very tiny use case for render. I like it because it seems snappier than requiring jsdom but as @ljharb said, we cannot really test React internals with this.
I wonder if it would be possible to emulate lifecycle methods with the render method just like shallow ? I would really appreciate if you could give me the use cases you have for render internally or what use cases you have seen in the wild.
I'm also curious to know why shallow does not call componentDidUpdate.
Kudos goes to enzymejs/enzyme#465 (comment) this gist is basically a copy of the comment but I wanted to separate it from there as it includes a lot of general Enzyme information which is missing in the docs.
I have a question about testing a HOC component defined with withNavigation
When i try to shallow render it produces the following snapshot
I am not interested in testing the lifecycle of the component or behavior of componentDidMount, just want the snapshot to include the general structure and styling of the original
<Device>
component