testaro 59.0.2 → 59.1.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "59.0.2",
3
+ "version": "59.1.0",
4
4
  "description": "Run 1000 web accessibility tests from 11 tools and get a standardized report",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -8,7 +8,8 @@
8
8
  "test": "node validation/executors/test",
9
9
  "run": "node validation/executors/run",
10
10
  "dirWatch": "node validation/executors/dirWatch",
11
- "netWatch": "node validation/executors/netWatch"
11
+ "netWatch": "node validation/executors/netWatch",
12
+ "postinstall": "patch-package"
12
13
  },
13
14
  "repository": {
14
15
  "type": "git",
@@ -44,6 +45,7 @@
44
45
  "playwright-dompath": "*"
45
46
  },
46
47
  "devDependencies": {
47
- "eslint": "*"
48
+ "eslint": "*",
49
+ "patch-package": "*"
48
50
  }
49
51
  }
@@ -0,0 +1,28 @@
1
+ diff --git a/node_modules/@wally-ax/wax-dev/src/runnerHtml.js b/node_modules/@wally-ax/wax-dev/src/runnerHtml.js
2
+ index 1d84a0b..d9c3fc5 100644
3
+ --- a/node_modules/@wally-ax/wax-dev/src/runnerHtml.js
4
+ +++ b/node_modules/@wally-ax/wax-dev/src/runnerHtml.js
5
+ @@ -34,8 +34,8 @@ const runner = function (code, options) {
6
+ description,
7
+ severity,
8
+ code,
9
+ - groupData = {}
10
+ } = item;
11
+ + const groupData = item.groupData || {};
12
+
13
+ const cleanedItem = {};
14
+ if (element) cleanedItem.element = element;
15
+ diff --git a/node_modules/@wally-ax/wax-dev/src/runnerUrl.js b/node_modules/@wally-ax/wax-dev/src/runnerUrl.js
16
+ index 0e020a0..3c6850f 100644
17
+ --- a/node_modules/@wally-ax/wax-dev/src/runnerUrl.js
18
+ +++ b/node_modules/@wally-ax/wax-dev/src/runnerUrl.js
19
+ @@ -33,8 +33,8 @@ const runner = function (code, options) {
20
+ selector,
21
+ component,
22
+ issue_category_name,
23
+ - groupData = {}
24
+ } = item;
25
+ + const groupData = item.groupData || {};
26
+
27
+ const cleanedItem = {};
28
+
package/tests/testaro.js CHANGED
@@ -140,6 +140,7 @@ const slowTestLimits = {
140
140
  distortion: 10,
141
141
  docType: 10,
142
142
  focAll: 10,
143
+ focInd: 10,
143
144
  focVis: 10,
144
145
  hover: 10,
145
146
  hovInd: 10,