Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 422 Bytes

File metadata and controls

31 lines (20 loc) · 422 Bytes

Jest unit tests

This folder contains a unit test template for Jest.

Configured to support ES6 syntax using Babel (preset es2015)

Installation

npm install

Running the tests

npm test

Or you can use built-in watch mode:

npm run test:watch

Show coverage

npm run test:cover

Note: coverage is also included in watch mode.