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

pa11y

Package Overview
Dependencies
Maintainers
2
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pa11y - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

6

lib/results.js

@@ -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 @@

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