jest/install

Install Jest

Install Jest testing framework

jest
install
testing

Command

npm install --save-dev jest

Explanation

Jest is a JavaScript testing framework with a focus on simplicity and zero configuration.

Examples

Install Jest

npm install --save-dev jest

Install Jest with TypeScript types

npm install --save-dev jest @types/jest

Install Jest with Yarn

yarn add --dev jest