Testing a Modern Redux Application
Learn how to test a modern Redux application.
We'll cover the following...
Automated Testing
In the past, testing a Redux application may have seemed like it required advanced testing knowledge that differs from those for testing a regular React application. Well, that’s no longer the case.
First, let’s consider unit testing.
Before the Redux toolkit, you may have had to write unit tests for all your action creators and reducers. But do you have to do so now?
Well, it depends. ...