1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-01 12:35:53 +02:00

jest: copyedit a few descriptions

This commit is contained in:
Gary King 2019-09-03 16:27:34 -04:00 committed by Agniva De Sarker
parent 763c0aeae5
commit 6dabaeac10

View file

@ -7,15 +7,15 @@
`jest` `jest`
- Run only tests with a name that matches the regex pattern: - Run tests whose names match the regex pattern:
`jest -t {{spec_name}}` `jest -t {{spec_name}}`
- Run only tests relating to uncommitted files: - Run tests related to uncommitted files:
`jest --onlyChanged` `jest --onlyChanged`
- Watch files for changes and rerun related tests: - Watch files for changes and re-run related tests:
`jest --watch` `jest --watch`