testaro 14.7.2 → 14.7.4

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 (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/run.js +2 -0
package/README.md CHANGED
@@ -84,7 +84,7 @@ The main directories containing code files are:
84
84
 
85
85
  ## System requirements
86
86
 
87
- Version 14 or later of [Node.js](https://nodejs.org/en/).
87
+ Version 16 or later of [Node.js](https://nodejs.org/en/).
88
88
 
89
89
  ## Installation
90
90
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "14.7.2",
3
+ "version": "14.7.4",
4
4
  "description": "Automation of accessibility testing",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/run.js CHANGED
@@ -20,6 +20,8 @@ const playwright = require('playwright');
20
20
  const debug = process.env.DEBUG === 'true';
21
21
  // Set WAITS environment variable to a positive number to insert delays (in ms).
22
22
  const waits = Number.parseInt(process.env.WAITS) || 0;
23
+ // Set STANDARD environment variable to also if not set.
24
+ process.env.STANDARD ??= 'also';
23
25
  // CSS selectors for targets of moves.
24
26
  const moves = {
25
27
  button: 'button, [role=button], input[type=submit]',