Setup and Integration
Learn how to set up and integrate tests we have created.
We'll cover the following...
Introduction
The role of the integration tests is to verify that all the parts of the application work correctly together. A comprehensive unit test suite will ensure all the reducers, action creators, middleware, and libraries are correct. We will try to run integration tests together in a single test to check system-wide behavior.
As an example of an integration test, we will verify that when the fetchRecipes()
action creator is dispatched, data is correctly fetched from the ...