1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 21:44:58 +02:00
tldr/pages/common/jest.md
2018-11-20 21:22:00 +00:00

23 lines
341 B
Markdown

# jest
> A zero-configuration JavaScript testing platform.
- Run all tests:
`jest`
- Run only tests with a name that matches the regex pattern:
`jest -t {{spec_name}}`
- Run only tests relating to uncommitted files:
`jest --onlyChanged`
- Watch files for changes and rerun related tests:
`jest --watch`
- Show help:
`jest --help`