
Research
wget to Wipeout: Malicious Go Modules Fetch Destructive Payload
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
jest-runner-mocha
Advanced tools
An experimental Mocha runner for Jest
This makes it easy to integrate existing Mocha projects with Jest.
Install jest
(it needs Jest 21+) and jest-runner-mocha
yarn add --dev jest jest-runner-mocha
# or with NPM
npm install --save-dev jest jest-runner-mocha
In your package.json
{
"jest": {
"runner": "jest-runner-mocha"
}
}
Or in jest.config.js
module.exports = {
runner: 'jest-runner-mocha',
}
yarn jest
This project uses cosmiconfig, so you can provide config via:
jest-runner-mocha
property in your package.json
jest-runner-mocha.config.js
JS file.jest-runner-mocharc
JSON fileIn package.json
{
"jest-runner-mocha": {
"cliOptions": {
// Options here
},
"coverageOptions": {
// Options here
}
}
}
or in jest-runner-mocha.config.js
module.exports = {
cliOptions: {
// Options here
},
"coverageOptions": {
// Options here
}
}
jest-runner-mocha maps some mocha CLI arguments to config options. For example --ui
is cliOptions.ui
option | example |
---|---|
ui | "ui": "tdd" |
timeout | "timeout": 10000 |
compiler | "compiler": "./path/to/babel-register" |
file | "file": ["./path/to/include.js", "/supports/multiple/files.js" ] |
jest-runner-mocha has some optional configuration for code coverage
option | example | description |
---|---|---|
useBabelRc | "useBabelRc": true | read .babelrc when instrumenting for code coverage (required if you transpile your code with babel). |
Coverage works outside of the box, simply yarn jest -- --coverage
You can also use other Jest options like coveragePathIgnorePatterns and coverageReporters
FAQs
An experimental Mocha runner for Jest
We found that jest-runner-mocha demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.
Product
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.