Skip to content

Commit d872c25

Browse files
committed
Fix the incorrect Jest watch command in Contributing
1 parent ac20cb2 commit d872c25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ This command is just a facade to [Jest](https://facebook.github.io/jest/). You m
2222

2323
For example, `jest --watch` lets you automatically run the test suite on every file change.
2424

25-
You can also run a subset of tests by passing a prefix to `jest`. For example, `jest ReactDOMSVG` will only run tests in the files that start with `ReactDOMSVG`, such as `ReactDOMSVG-test.js`.
25+
You can also run a subset of tests by passing a prefix to `jest`. For instance, `jest ReactDOMSVG` will only run tests in the files that start with `ReactDOMSVG`, such as `ReactDOMSVG-test.js`.
2626

27-
When you know which tests you want to run, you can achieve a fast feedback loop by using these two features together. For example, `jest --watch ReactDOMSVG` will re-run only the matching tests on every change.
27+
When you know which tests you want to run, you can achieve a fast feedback loop by using these two features together. For example, `jest ReactDOMSVG --watch` will re-run only the matching tests on every change.
2828

2929
Just make sure to run the whole test suite before submitting a pull request!
3030

0 commit comments

Comments
 (0)