Socket
Socket
Sign inDemoInstall

parallel-test-runner

Package Overview
Dependencies
14
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    parallel-test-runner

### Run your Mocha tests faster


Version published
Maintainers
1
Install size
1.57 MB
Created

Readme

Source

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.

FAQs

Last updated on 10 Jan 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc