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

grunt-blanket-qunit

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-blanket-qunit - npm Package Compare versions

Comparing version 0.1.6 to 0.1.7

2

package.json
{
"name": "grunt-blanket-qunit",
"description": "Headless Blanket.js code coverage and QUnit testing via PhantomJS",
"version": "0.1.6",
"version": "0.1.7",
"homepage": "https://github.com/ModelN/grunt-blanket-qunit",

@@ -6,0 +6,0 @@ "author": {

@@ -97,2 +97,7 @@ # grunt-blanket-qunit

### 0.1.7
*Released 14 June 2013*
* Fixed Issue #2: Failure if coverage is exactly equal to threshold
### 0.1.6

@@ -99,0 +104,0 @@ *Released 13 June 2013*

@@ -126,3 +126,3 @@ // grunt-blanket-qunit 0.1.6

var percent = (coveredLines / totalLines) * 100;
var pass = (percent > coverageThreshold);
var pass = (percent >= coverageThreshold);

@@ -235,3 +235,3 @@ var result = pass ? "PASS" : "FAIL";

}
},
}
});

@@ -238,0 +238,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