Action Creators and Reducers
Learn the changes required to tests when you change the project structure.
We'll cover the following...
Usually, when writing unit tests, it is recommended to test each part of the system separately and only test connections and interfaces in the integration tests. In the case of Redux, though, it is worth considering the connection between action creators and reducers.
The way we’ve built our tests ...