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.
- package/README.md +1 -1
- package/package.json +1 -1
- package/run.js +2 -0
package/README.md
CHANGED
package/package.json
CHANGED
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]',
|