Introduction to unit testing in JavaScript with Jest

1 · Michael Burrows · March 31, 2022, 10 p.m.
In this tutorial you’ll get an introduction to unit testing in JavaScript using Jest. If you’re unfamiliar with unit testing it’s simply a type of testing that is performed on individual components or modules, and Jest is a framework that simplifies the process of writing these tests. Let’s get started by installing Jest via NPM: […]...