New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mocha-lcov-reporter

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mocha-lcov-reporter - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

4

lib/lcov.js

@@ -19,5 +19,5 @@

runner.on('end', function(){
// In a browser context, coverage will be in window.$jscoverage.
// In a browser context, coverage will be in window.$jscoverage or window._$blanket.
var g = typeof(global) != 'undefined' ? global : window;
var cov = g._$jscoverage || {};
var cov = g._$jscoverage || g._$blanket || {};

@@ -24,0 +24,0 @@ for (var filename in cov) {

{
"name": "mocha-lcov-reporter",
"description": "LCOV reporter for Mocha",
"version": "1.0.0",
"version": "1.1.0",
"author": "Steven Looman <steven.looman@gmail.com>",

@@ -6,0 +6,0 @@ "keywords": [ "mocha", "reporter", "lcov", "coverage" ],

@@ -65,2 +65,7 @@ mocha-lcov-reporter

Blanket support
===============
[Blanket.js](http://blanketjs.org/) can be used as well. After the lcov file, be sure to fix the paths for the covered files. The path will be an URL, having `file:` as its protocol. Using the same manner as above, the path can be fixed using `sed`.
Example output

@@ -67,0 +72,0 @@ ==============

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc