Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
parallel-test-runner
Advanced tools
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.
$ npm i -S parallel-test-runner
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.
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.
Might be added in the future.
FAQs
### Run your Mocha tests faster
The npm package parallel-test-runner receives a total of 0 weekly downloads. As such, parallel-test-runner popularity was classified as not popular.
We found that parallel-test-runner 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
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.