An Introduction to Testing
Learn the types of testing in detail with the use of Jest and Cypress as test runners.
We'll cover the following...
Testing basics
Testing is an essential part of any development workflow and can be divided into three separate testing phases:
Unit testing: These tests aim to make sure that every single function in our code is working. They do ...