mocha-parallel-tests icon indicating copy to clipboard operation
mocha-parallel-tests copied to clipboard

Parallel test runner for mocha tests. Looking for maintainer.

Results 68 mocha-parallel-tests issues
Sort by recently updated
recently updated
newest added

Hi, I am experiencing the following error running one of my test suites. **Command:** mocha-parallel-tests --opts ./mocha.opts --max-parallel 5 --slow 50 **mocha.opts content as follows** --reporter mocha-jenkins-reporter --timeout 300000 --require...

Hi guys, I just noticed the Mocha reporter events (`test`, `test end`, `hook`, `hook end`, ..etc) are not been triggered until each test file finish its execution ( or when...

I have read the document about the limitations (https://github.com/yandex/mocha-parallel-tests/wiki/Limitations) and I wanted to know if I use somewhere `global.sinon`, is it normal that my tests are not working and telling...

I'm not sure what causes "fn" to be null but sometimes it seems to be null. This causes the mocha-parallel-tests to crash. I'm using mocha 3.0.2. Wrapping the assignment in...

Hello, I am using `[email protected]` and am getting the following error when switching from `mocha` to `mocha-parallel-tests`: ``` if (!/jsdom/.test(window.navigator.userAgent)) { ReferenceError: window is not defined ``` All I did...

Hello, Since every test runs in its own process I cannot access the main context (this.suite.ctx) anymore. Previously in `mocha`, I've added my parameters to `this.suite.ctx` which were available in...

Does this lib support global before and after hooks? In regular mocha if before and after are outside the describe block they becoming global hooks means they run before and...

question

Forking child processes in node is an expensive operation. Also, subprocesses don't have a shared cache between each other. And if the test is using some `--require` code or just...

enhancement

On MacOS I've had nothing but trouble getting tests to run recursively. They just don't work. specifying --recursive web/js/**/*Test.js works.. but ignores a large number of files. ... like 40%...