testaro 28.1.6 → 28.1.8
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/README.md +3 -3
- package/package.json +1 -1
- package/tests/testaro.js +2 -0
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ The need for multi-tool integration, and its costs, are discussed in [Accessibil
|
|
|
16
16
|
|
|
17
17
|
Testaro launches and controls web browsers, performing operations, conducting tests, and recording results.
|
|
18
18
|
|
|
19
|
-
Testaro is designed to be a workstation-based agent, because many of the tests performed by Testaro simulate the use of a web browser on a workstation. Testaro can be installed under MacOS, Windows, or
|
|
19
|
+
Testaro is designed to be a workstation-based agent, because many of the tests performed by Testaro simulate the use of a web browser on a workstation. Testaro can be installed under a MacOS, Windows, Debian, or Ubuntu operating system.
|
|
20
20
|
|
|
21
21
|
Testaro accepts _jobs_, performs them, and returns _reports_.
|
|
22
22
|
|
|
@@ -61,7 +61,7 @@ Each tool accessed with Testaro defines _rules_ and tests _targets_ for complian
|
|
|
61
61
|
|
|
62
62
|
```
|
|
63
63
|
alfa: 59
|
|
64
|
-
aslint:
|
|
64
|
+
aslint: 136
|
|
65
65
|
axe: 80
|
|
66
66
|
htmlcs: 115
|
|
67
67
|
ibm: 132
|
|
@@ -69,7 +69,7 @@ nuVal: 215
|
|
|
69
69
|
qualWeb: 131
|
|
70
70
|
testaro: 36
|
|
71
71
|
wave: 58
|
|
72
|
-
total:
|
|
72
|
+
total: 962
|
|
73
73
|
```
|
|
74
74
|
|
|
75
75
|
Some of the tools are under active development, and their rule counts change over time.
|
package/package.json
CHANGED
package/tests/testaro.js
CHANGED
|
@@ -100,6 +100,7 @@ exports.reporter = async (page, options) => {
|
|
|
100
100
|
const data = {
|
|
101
101
|
rules: {},
|
|
102
102
|
preventions: [],
|
|
103
|
+
invalid: [],
|
|
103
104
|
testTimes: {}
|
|
104
105
|
};
|
|
105
106
|
// If the rule specification is valid:
|
|
@@ -164,6 +165,7 @@ exports.reporter = async (page, options) => {
|
|
|
164
165
|
// Otherwise, i.e. if the rule is undefined or doubly defined:
|
|
165
166
|
else {
|
|
166
167
|
// Report this.
|
|
168
|
+
data.invalid.push(rule);
|
|
167
169
|
console.log(`ERROR: Rule ${rule} not validly defined`);
|
|
168
170
|
}
|
|
169
171
|
}
|