diff options
Diffstat (limited to '.github/CONTRIBUTING.md')
-rw-r--r-- | .github/CONTRIBUTING.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 5a484fbbd..3c8e6413c 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md | |||
@@ -146,3 +146,9 @@ Build the application and run the unit/integration tests: | |||
146 | $ npm run build | 146 | $ npm run build |
147 | $ npm test | 147 | $ npm test |
148 | ``` | 148 | ``` |
149 | |||
150 | If you just want to run 1 test: | ||
151 | |||
152 | ``` | ||
153 | $ npm run mocha -- --exit --require ts-node/register/type-check --bail server/tests/api/index.ts | ||
154 | ``` | ||