testaro 28.0.0 → 28.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/procs/aslint.js +3 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "28.0.0",
3
+ "version": "28.0.1",
4
4
  "description": "Run 650 web accessibility tests from 8 tools and get a standardized report",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/procs/aslint.js CHANGED
@@ -9,14 +9,13 @@ const options = {
9
9
  reportFormat: {JSON: true},
10
10
  watchDomChanges: false
11
11
  };
12
- const bundleEl = document.getElementById('aslintBundle');
13
12
  window
14
13
  .aslint
15
14
  .config(options)
16
15
  .addListener('onValidatorStarted', function () {
17
16
  console.log('@ Validator started');
18
17
  })
19
- .addListener('onValidatorComplete', function (error, report) {
18
+ .addListener('onValidatorComplete', function () {
20
19
  console.log('@ Validator Complete');
21
20
  })
22
21
  .addFilter('onBeforeRuleReport', function (report) {
@@ -42,7 +41,7 @@ window
42
41
  .html
43
42
  .replace(/&lt;/g, '<')
44
43
  .replace(/&gt;/g, '>')
45
- .replace(/&quot;/g, '\"')
44
+ .replace(/&quot;/g, '"')
46
45
  .replace(/&#x3D;/g, '=')
47
46
  .replace(/&#x2F;/g, '/')
48
47
  .replace(/&#39;/g, '\'')
@@ -55,7 +54,7 @@ window
55
54
  .description
56
55
  .replace(/&lt;/g, '<')
57
56
  .replace(/&gt;/g, '>')
58
- .replace(/&quot;/g, '\"')
57
+ .replace(/&quot;/g, '"')
59
58
  .replace(/&#x3D;/g, '=')
60
59
  .replace(/&#x2F;/g, '/')
61
60
  .replace(/&amp;(?:amp;)*/g, '&')