Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
stryker-jest-runner
Advanced tools
A plugin to use the jest test runner and framework in Stryker, the JavaScript mutation testing framework
Install stryker-jest-runner locally within your project folder, like so:
npm i --save-dev stryker-jest-runner
The stryker-jest-runner is a plugin for Stryker to enable Jest as a test runner. As such, you should make sure you have the correct versions of its dependencies installed:
For the minimum supported versions, see the peerDependencies section in package.json.
Make sure you set the testRunner
option to "jest" and set coverageAnalysis
to "off" in your Stryker configuration.
{
testRunner: 'jest'
coverageAnalysis: 'off'
}
The stryker-jest-runner also provides a couple of configurable options using the jest
property in your Stryker config:
{
jest: {
projectType: 'custom',
config: require('path/to/your/custom/jestConfig.js'),
enableFindRelatedTests: true,
}
}
option | description | default value | alternative values |
---|---|---|---|
projectType (optional) | The type of project you are working on. | default | default uses the config option (see below) |
react when you are using create-react-app | |||
react-ts when you are using create-react-app-typescript | |||
config (optional) | A custom Jest configuration object. You could also use require to load it here) | undefined | |
enableFindRelatedTests (optional) | Whether to run jest with the --findRelatedTests flag. When true , Jest will only run tests related to the mutated file per test. (See --findRelatedTests) | true | false |
Note: When neither of the options are specified it will use the Jest configuration in your "package.json".
Note: the projectType
option is ignored when the config
option is specified.
Note: Stryker currently only works for CRA-projects that have not been ejected.
The following is an example stryker.conf.js file:
module.exports = function(config) {
config.set({
testRunner: "jest",
mutator: "javascript",
coverageAnalysis: "off",
mutate: ["src/**/*.js"]
});
};
For more information on what these options mean, take a look at the Stryker readme.
In order to use the stryker-jest-runner
it must be loaded in the Stryker mutation testing framework via the Stryker configuration. The easiest way to achieve this, is not have a plugins section in your config file. That way, all node_modules starting with stryker-
will be loaded.
Make sure to read the Stryker contribution guidelines located in the Stryker mono repository.
FAQs
A plugin to use the jest test runner and framework in Stryker, the JavaScript mutation testing framework
The npm package stryker-jest-runner receives a total of 263 weekly downloads. As such, stryker-jest-runner popularity was classified as not popular.
We found that stryker-jest-runner demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
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.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.