sharp/.mocharc.jsonc
Ingvar Stepanyan 3a64a0529a
Tests: run in parallel, move settings to config file (#3449)
This allows to easily invoke Mocha alone via `npx mocha`, or for e.g. VSCode Test Explorer to find and run tests with the correct settings automatically.
2022-11-10 21:48:18 +00:00

7 lines
89 B
JSON

{
"parallel": true,
"slow": 1000,
"timeout": 30000,
"spec": "./test/unit/*.js"
}