Skip to content

Commit

Permalink
Chore: Add a script for testing with more control (#12444)
Browse files Browse the repository at this point in the history
  • Loading branch information
fa93hws authored and platinumazure committed Oct 17, 2019
1 parent 012ec51 commit fb633b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/developer-guide/unit-tests.md
Expand Up @@ -12,6 +12,10 @@ This automatically starts Mocha and runs all tests in the `tests` directory. You

If you want to quickly run just one test, you can do so by running Mocha directly and passing in the filename. For example:

./node_modules/.bin/mocha tests/lib/rules/no-wrap-func.js
npm test:cli tests/lib/rules/no-wrap-func.js

Running individual tests is useful when you're working on a specific bug and iterating on the solution. You should be sure to run `npm test` before submitting a pull request.

## More Control on Unit Testing

`npm test:cli` is an alias of the Mocha cli in `./node_modules/.bin/mocha`. [Options](https://mochajs.org/#command-line-usage) are available to be provided to help to better control the test to run.
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -9,6 +9,7 @@
"main": "./lib/api.js",
"scripts": {
"test": "node Makefile.js test",
"test:cli": "mocha",
"lint": "node Makefile.js lint",
"fix": "node Makefile.js lint -- fix",
"fuzz": "node Makefile.js fuzz",
Expand Down

0 comments on commit fb633b2

Please sign in to comment.