Comparing version 1.0.0 to 1.0.1
@@ -34,5 +34,5 @@ 'use strict'; | ||
total: messages.length, | ||
error: messageCounts.error, | ||
warning: messageCounts.warning, | ||
notice: messageCounts.notice | ||
error: messageCounts.error || 0, | ||
warning: messageCounts.warning || 0, | ||
notice: messageCounts.notice || 0 | ||
}, | ||
@@ -39,0 +39,0 @@ results: messages |
{ | ||
"name": "pa11y", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
@@ -5,0 +5,0 @@ "description": "pa11y is your automated accessibility testing pal", |
@@ -7,3 +7,3 @@ pa11y | ||
**Current Version:** *1.0.0* | ||
**Current Version:** *1.0.1* | ||
**Node Version Support:** *0.10* | ||
@@ -10,0 +10,0 @@ |
@@ -61,9 +61,8 @@ /* jshint maxlen: 200 */ | ||
{type: 2}, | ||
{type: 2}, | ||
{type: 3} | ||
{type: 2} | ||
]); | ||
assert.strictEqual(res.count.total, 6); | ||
assert.strictEqual(res.count.total, 5); | ||
assert.strictEqual(res.count.error, 2); | ||
assert.strictEqual(res.count.warning, 3); | ||
assert.strictEqual(res.count.notice, 1); | ||
assert.strictEqual(res.count.notice, 0); | ||
}); | ||
@@ -70,0 +69,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
698