diff --git a/docs/development/build-system-overview.md b/docs/development/build-system-overview.md index e2d1d7f8f3c3..df12df6ae970 100644 --- a/docs/development/build-system-overview.md +++ b/docs/development/build-system-overview.md @@ -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 () {