Jest is a delightful JavaScript testing framework with zero config. It handles assertions, mocking, and code coverage out of the box.## Setup```bashnpm install --save-dev jest```## Basic Test```javasc