Skip to content

Instantly share code, notes, and snippets.

@pirate
Created December 20, 2017 20:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pirate/4369a4f7868f6dfc06addb0658b1aa49 to your computer and use it in GitHub Desktop.
Save pirate/4369a4f7868f6dfc06addb0658b1aa49 to your computer and use it in GitHub Desktop.
const mapStateToProps = (state) => ({
// some complex logic that needs to be tested
...
})
const Component = reduxify({
mapStateToProps,
mapDispatchToProps: (dispatch) => ({...}),
render: (props) =>
<div>...</div>
})
const test_mapStateToProps = () => {
assertEquals(mapStateToProps(...), ...)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment