Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

qunit

Package Overview
Dependencies
Maintainers
4
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

qunit - npm Package Compare versions

Comparing version 0.7.7 to 0.8.0

12

lib/coverage.js

@@ -57,3 +57,13 @@ var path = require('path'),

matcher = function (file) {
return file === options.code.path;
var files = options.coverage.files;
if (files) {
files = Array.isArray(files) ? files : [files];
return files.some(function(f) {
if (typeof f === 'string') return file.indexOf(f) === 0;
else if (f instanceof RegExp) return f.test(file);
else throw new Error("invalid entry in options.coverage.files: " + typeof f);
});
} else {
return file === options.code.path;
}
}

@@ -60,0 +70,0 @@ instrumenter = new istanbul.Instrumenter();

2

package.json
{
"name": "qunit",
"description": "QUnit testing framework for nodejs",
"version": "0.7.7",
"version": "0.8.0",
"author": "Oleg Slobodskoi <oleg008@gmail.com>",

@@ -6,0 +6,0 @@ "contributors": [

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