testilo 17.1.1 → 17.1.2

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 CHANGED
@@ -344,7 +344,8 @@ This is a valid Testaro job.
344
344
 
345
345
  If, however, you requested a merger **with** isolation, then Testilo would take cognizance of the fact that an `axe` test act is a target-modifying act. Testilo would therefore act as if another instance of the placeholder had been located in the script after the `axe` test act. So, copies of the same 6 acts that precede the `axe` test act would be inserted **after** the `axe` test act, too.
346
346
 
347
- Of the 8 tools providing tests for Testaro, 4 are target-modifying:
347
+ Of the 9 tools providing tests for Testaro, 5 are target-modifying:
348
+ - `aslint`
348
349
  - `axe`
349
350
  - `htmlcs`
350
351
  - `ibm`
package/batch.js CHANGED
@@ -42,11 +42,8 @@ exports.batch = (id, what, targetList) => {
42
42
  acts: {
43
43
  main: [
44
44
  {
45
- type: 'launch'
46
- },
47
- {
48
- type: 'url',
49
- which: target[2],
45
+ type: 'launch',
46
+ url: target[2],
50
47
  what: target[1]
51
48
  }
52
49
  ]
package/merge.js CHANGED
@@ -17,9 +17,11 @@ require('dotenv').config();
17
17
  const stdRequester = process.env.REQUESTER;
18
18
  // Tools that alter the page.
19
19
  const contaminantNames = new Set([
20
+ 'aslint',
20
21
  'axe',
21
22
  'htmlcs',
22
- 'ibm'
23
+ 'ibm',
24
+ 'testaro'
23
25
  ]);
24
26
 
25
27
  // ########## FUNCTIONS
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testilo",
3
- "version": "17.1.1",
3
+ "version": "17.1.2",
4
4
  "description": "Prepares and processes Testaro reports",
5
5
  "main": "aim.js",
6
6
  "scripts": {
package/script.js CHANGED
@@ -14,7 +14,7 @@ require('dotenv').config();
14
14
  // ########## VARIABLES
15
15
 
16
16
  let toolIDs = [
17
- 'alfa', 'axe', 'htmlcs', 'ibm', 'nuVal', 'qualWeb', 'testaro', 'wave'
17
+ 'alfa', 'aslint', 'axe', 'htmlcs', 'ibm', 'nuVal', 'qualWeb', 'testaro', 'wave'
18
18
  ];
19
19
 
20
20
  // ########## FUNCTIONS