clarify mocha test exclusion

This commit is contained in:
Zeke Sikelianos 2016-10-06 10:27:33 -07:00
parent a8e59ccd3d
commit 37c53f2e09

View file

@ -95,7 +95,8 @@ $ npm run build && npm test
You can make the test suite run faster by isolating the specific test or block
you're currently working on using Mocha's
[exclusive tests](https://mochajs.org/#exclusive-tests) feature:
[exclusive tests](https://mochajs.org/#exclusive-tests) feature. Just append
`.only` to any `describe` or `it` function call:
```js
describe.only('some feature', function () {