Functional testing for JavaScript-heavy interfaces
Unit testing for the Django REST Framework
In this chapter, we add tests to our application. In the first part, we cover functional testing for user interfaces with Cypress. In the second part, we move to unit testing in Django.
This chapter assumes you are in the repo root decoupled-dj, with the Python virtual environment active.
Introduction to Functional Testing
More often than not, testing in software development is an afterthought, ...