Skip to content

Instantly share code, notes, and snippets.

@mladenp
Created May 30, 2018 16:41
Show Gist options
  • Save mladenp/004d34f5dc7358d5b1fb49937410764b to your computer and use it in GitHub Desktop.
Save mladenp/004d34f5dc7358d5b1fb49937410764b to your computer and use it in GitHub Desktop.
Test componentDidMount jest
it('componentDidMount should dispatch loadHomeAction', () => {
const wrapper = shallow(<Home dispatch={jest.fn()} />);
wrapper.instance().componentDidMount();
expect(wrapper.instance().props.dispatch).toBeCalledWith(loadHomeAction());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment