Component Testing in React
Understand the importance of testing the frontend and what aspects should be tested in a React application
We'll cover the following...
We already understand that the frontend is the client-side section of an application. When we wrote tests for our Django applications, we mostly tested whether the database stored the right data passed to the viewsets, serializers, and models. We didn’t test the user interface.
As a React ...