3 ways to test mapStateToProps and mapDispatchToProps
You already know that you shouldn't actually test the result of calling connect (the connected component) - as Redux already makes sure the behaviour of connect is correct.
Instead, you test your wrapped component separately, by exporting it as a named export.
But what about mapStateToProps and mapDispatchToProps? This is