1.6.1 • Published 6 years ago

parallel-test-runner v1.6.1

Weekly downloads
14
License
ISC
Repository
-
Last release
6 years ago

parallel-test-runner

Run your Mocha tests faster

parallel-test-runner is a parallel test runner for Mocha. It runs your test files on several node processes, and does not require making any changes to your existing tests. I was able to obtain a 2-3x speed increase in running time for my existing projects by using this package, which is pretty cool.

Installation

$ npm i -S parallel-test-runner

Usage

Create a new runner file:

parallelTestRunner.js:

#!/usr/bin/env node

const {runner} = require('parallel-test-runner');
const path = require('path');

runner()
    .config({
        pattern: 'test/**/*.test.js', //mandatory
        shuffleFiles: false, //optional
        slowTestPatterns: ['SlowTestFilePattern.js'], //optional
        requireFiles: [path.resolve(__dirname, '../test/setup.js')], //optional
        parallelFactor: 4 //The number of processes the test runner will spawn
    })
    .run()
    .then(() => {
        process.exit(0);
    })
    .catch(() => {
        process.exit(1);
    });

Now you can simply execute ./parallelTestRunner.js to run your tests.

Flaky tests

Running the tests in parallel might cause some of them to fail randomly. This is probably because you have concurrency issues in your tests or production code. You can try including them in the slowTestPatterns, which will run them in a separate process.

CLI support

Might be added in the future.

1.6.1

6 years ago

1.6.0

6 years ago

1.5.1

6 years ago

1.5.0

6 years ago

1.4.5

6 years ago

1.4.4

6 years ago

1.4.3

6 years ago

1.4.2

6 years ago

1.4.1

6 years ago

1.4.0

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago