Using Jest snapshots to simply redux tests
When writing tests for redux actions and reducers, its often the case when refactoring actions and reducers, tests are broken and manual changes need to be made to the tests to reflect these changes. In this post I’m going to describe a simple way to write concise tests which allow for easy refactoring using Jest snapshots.
Case Point
Lets assume, you have an action creator defined in some file called ‘actions.js’. This action creator expects a numeric data type which is then parsed to floating point number and attached to the action - something along these lines…
actions.js
|
|
In the test for this action creator, you would have something along the lines of…
actions.test.js
|
|
This form of testing works and perfectly suitable for most situations. However, once we make any changes to the action creator, we would need to manually update the test to reflect the same changes. What Jest provides is a simple way to automate the updates to the tests using snapshots.
To make use of snapshots we would change the test above like so…
actions.test.js
|
|
On first run of the test, Jest will create a snapshot in the ‘__snapshots’ directory relative to the test file. When updates are made to the action creator such as removing ‘parseFloat’, the test will fail with a description that the action creator has changed, giving you the opportunity to update the snapshot if the changes are deemed to be appropriate / intended.
I hope you can see how snapshots can help in writing concise tests for your applications.
Thanks for reading!