mocha-parallel-tests
mocha-parallel-tests copied to clipboard
Parallel test runner for mocha tests. Looking for maintainer.
Can you provide the grunt implementation ?
It seems it doesn't work with `--watch`. It exits after the first run, doesn't actually wait for file changes... [node v6.9.0, Win10] Awesome lib btw!
@createthis in #203 > I do notice that this feature seems fairly inefficient with 1100+ tests spread out amongst 93 files. > I get a lot of one line outputs...
Trying to parallel our API tests using mocha-parallel-tests. In our testing framework, we have a config file which generates config respecting to sent flags const argv = require("minimist")(process.argv) const env...
Currently `--bail` behaviour is weird in `mocha-parallel-tests`. In `mocha` if one test case fails others don't get executed. `mocha-parallel-tests` does this for each process and these processes don't know about...
The parent issue is #155 - we need to re-use forked processes because processes spawning is pretty expensive in terms of timing and RAM. 1. if `mocha` is executed with...
Boom! Of course this is not as bad as it sounds. This issue assumes we need to start integrate closer with `mocha` and try to add the `--parallel` flag to...