mocha-parallel-tests
mocha-parallel-tests copied to clipboard
Parallel test runner for mocha tests. Looking for maintainer.
I really like the new Mocha config files. I've fully switched over to them from `mocha.opts`. I also use the `--config` flag to split my e2e test config from my...
When running any test suite in a pipeline I always make sure to give the `--forbid-only` flag. When doing that with this package it exits the process with a non-zero...
When using this code: ```js // const Mocha = require("mocha"); const Mocha = require("mocha-parallel-tests").default; const { expect } = require("chai"); const mochaInstance = new Mocha(); mochaInstance.timeout(90000); const suiteInstance = Mocha.Suite.create(mochaInstance.suite,...
Can only see this problem in the latest 2.2.1 version. Sample test ``` const chai = require('chai'); const expect = chai.expect; describe('Suite', function() { it('Test pass', function() { expect(true).to.be.true; });...
When initializing a new Mocha with `mocha-cakes-2`, the tests are unable to run. ``` var mocha = new Mocha({ grep: scopeGrep, timeout: 60000, ui: 'mocha-cakes-2', reporter: mochaReporter, reporterOptions: { enableCode:...
Would you be able to add mocha-parallel-test support for the mocha --ui option that allows for the use of TDD.
Not sure what is the root reason for the issue. Possibly file with ignored tests on describe level (investigating now). Need to be fixed. It fail entire run.... Unhandled asynchronous...
Hi! I'm using mocha-parallel-tests version 2.2.2, tried with mocha 6.1.4 and 6.2.0. I have several test files, each file contain one **describe** block and several **it**s in it, also at...