Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 605 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 605 Bytes

JEST

Jest is a delightful JavaScript Testing Framework with a focus on simplicity.

It works with projects using: Babel, TypeScript, Node, React, Angular, Vue and more!

Documentation

Run all tests

$ yarn jest
# or
$ yarn run test

Run all tests with watch

$ jest -i --watchAll
# or
$ yarn run test:debug

Run different test

$ yarn jest getFixedNumber

Run different test with watch

$ yarn jest -i --watchAll getFixedNumber