Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
mocha-phantomjs-istanbul
Advanced tools
collect istanbul coverage from instrumented client-side Mocha tests with PhantomJS
Collect istanbul coverage stats from client-side Mocha tests with PhantomJS using mocha-phantomjs.
Collects coverage data from a istanbul-instrumented test suite run in the browser and saves it to a .json file for further processing (for example with gulp-istanbul-report).
Works as a hook into mocha-phantomjs. See these discussions for more info: https://github.com/metaskills/mocha-phantomjs/issues/99, https://github.com/metaskills/mocha-phantomjs/pull/113.
$ npm install mocha-phantomjs-istanbul --save-dev
You'll need to specify two things when running mocha-phantomjs:
You'll probably not be running this from the command line, but you could:
phantomjs ./node_modules/mocha-phantomjs/lib/mocha-phantomjs.coffee test-runner.html spec '{"hooks": "mocha-phantomjs-istanbul", "coverageFile": ".coverage.json"}'
It's more likely you'll run this from gulp with gulp-mocha-phantomjs. The options get passed through using phantomjs
.
var mochaPhantomJS = require('gulp-mocha-phantomjs');
gulp.task('test', function () {
gulp.src('test-runner.html', {read: false})
.pipe(mochaPhantomJS({
phantomjs: {
hooks: 'mocha-phantomjs-istanbul',
coverageFile: './coverage/coverage.json'
},
reporter: 'spec'
}));
});
Use it with some other plugin to turn the JSON file into a full report. If you use gulp, you could use gulp-istanbul-report.
FAQs
collect istanbul coverage from instrumented client-side Mocha tests with PhantomJS
The npm package mocha-phantomjs-istanbul receives a total of 1,825 weekly downloads. As such, mocha-phantomjs-istanbul popularity was classified as popular.
We found that mocha-phantomjs-istanbul 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.