grunt-blanket-qunit
Advanced tools
Comparing version 0.1.6 to 0.1.7
{ | ||
"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 @@ }, |
22495
122