Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
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
Create a jest-runner-mocha.config.js
at the <rootDir>
or your Jest project.
ui
: (Optional) the UI used by mocha// example
module.exports = {
ui: 'tdd',
}
compiler
: (Optional) the used for adding a compile step to your mocha tests// example
module.exports = {
compiler: '/absolute/path/to/babel-register/or/other/compiler',
}
NOTE: Eventually Jest will eventually have an option for configuring runners that will eliminate the need for jest-runner-mocha.config.js
ui
and compiler
jest --coverage
jest --runInBand
FAQs
An experimental Mocha runner for Jest
The npm package jest-runner-mocha receives a total of 44 weekly downloads. As such, jest-runner-mocha popularity was classified as not popular.
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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.