jest cli code example
Example 1: how to install jest
npm install --save-dev jest
// Yarn
yarn add --dev jest
Example 2: jest watch mode
jest --watch #runs jest -o by default
jest --watchAll #runs all tests
npm install --save-dev jest
// Yarn
yarn add --dev jest
jest --watch #runs jest -o by default
jest --watchAll #runs all tests