Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@stryker-mutator/mocha-runner

Package Overview
Dependencies
Maintainers
4
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stryker-mutator/mocha-runner

A plugin to use the mocha test runner in Stryker, the JavaScript mutation testing framework

  • 1.3.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
44K
increased by12.75%
Maintainers
4
Weekly downloads
 
Created
Source

Build Status NPM Node version Gitter

Stryker Mocha Runner

A plugin to use Mocha in Stryker, the JavaScript mutation testing framework.

Install

Install @stryker-mutator/mocha-runner locally within your project folder, like so:

npm i --save-dev @stryker-mutator/mocha-runner

Peer dependencies

The @stryker-mutator/mocha-runner is a plugin for stryker to enable mocha as a test runner. As such, you should make sure you have the correct versions of its dependencies installed:

  • mocha
  • @stryker-mutator/core

Configuring

You can configure the mocha test runner in the stryker.conf.js file.

// stryker.conf.js
module.exports = function (config) {
    config.set({
        // ...
        testRunner: 'mocha',
        // ...
        mochaOptions: {
            // Optional mocha options
            spec: [ 'test/**/*.js' ]
            config: 'path/to/mocha/config/.mocharc.json',
            package: 'path/to/custom/package/package.json',
            opts: 'path/to/custom/mocha.opts',
            ui: 'bdd',
            timeout: 3000,
            require: [ /*'babel-register' */],
            asyncOnly: false,
            grep: /.*/
        }
    });
}

When using Mocha version 6, @stryker-mutator/mocha-runner will use mocha's internal file loading mechanism to load your mocha configuration. So feel free to leave out the mochaOptions entirely if you're using one of the default file locations.

Alternatively, use ['no-config']: true, ['no-package']: true or ['no-opts']: true to ignore the default mocha config, default mocha package.json and default mocha opts locations respectively.

mochaOptions.spec [string or string[]]

Default: 'test/**/*.js'

Choose which files to include. This is comparable to mocha's test directory although there is no support for --recursive.

If you want to load all files recursively: use a globbing expression ('test/**/*.js'). If you want to decide on the order of files, use multiple globbing expressions. For example: use ['test/helpers/**/*.js', 'test/unit/**/*.js'] if you want to make sure your helpers are loaded before your unit tests.

mochaOptions.config [string | undefined]

Default: undefined

Explicit path to the mocha config file

New since Mocha 6

mochaOptions.package [string | undefined]

Default: undefined

Specify an explicit path to a package.json file (ostensibly containing configuration in a mocha property). See https://mochajs.org/#-package-path.

New since Mocha 6

mochaOptions.opts [string | false]

Default: 'test/mocha.opts'

Specify a 'mocha.opts' file to be loaded. Options specified directly in your stryker.conf.js file will overrule options from the 'mocha.opts' file. Disable loading of an additional mocha.opts file with false.

The only supported mocha options are used: --ui, --require, --async-only, --timeout, --grep (or their short form counterparts). Others are ignored by the @stryker-mutator/mocha-runner.

mochaOptions.grep [RegExp]

Default: undefined

Specify a mocha grep command, to single out individual tests.

mochaOptions.ui [string]

Default: undefined

Set the name of your mocha ui

mochaOptions.require [string[]]

Default: []

Set mocha's require option

mochaOptions.asyncOnly [boolean]

Default: false

Set mocha's asyncOnly option

mochaOptions.timeout [number]

Default: undefined

Set mocha's timeout option

Keywords

FAQs

Package last updated on 26 Apr 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc