testaro 74.2.0 → 74.2.1

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 (2) hide show
  1. package/package.json +1 -1
  2. package/run.js +7 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "74.2.0",
3
+ "version": "74.2.1",
4
4
  "description": "Run 1300 web accessibility tests from 10 tools and get a standardized report",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/run.js CHANGED
@@ -21,16 +21,15 @@ require('dotenv').config({quiet: true});
21
21
  const {isValidJob} = require('./procs/job');
22
22
  const {getCatalog} = require('./procs/catalog');
23
23
  const {nowString} = require('./procs/dateTime');
24
- // Module to create browsers.
25
- const {chromium} = require('playwright-extra');
24
+ const {chromium, webkit, firefox} = require('playwright-extra');
26
25
  const fs = require('fs').promises;
27
26
  const os = require('os');
28
- // Module to evade automation detection.
29
- // Stealth is Chromium-specific: its evasions inject Chromium-only launch
30
- // flags (e.g. `--disable-blink-features=AutomationControlled`) and patch
31
- // Blink-only DOM globals. WebKit and Firefox reject the unknown args at
32
- // startup, so registering stealth on them breaks every launch. Job-level
33
- // opt-out for Chromium happens in procs/launch.js via the `stealth` field.
27
+ /*
28
+ Module to evade detection of Chromium automation. Injects launch flags
29
+ (e.g., `--disable-blink-features=AutomationControlled`) and patches
30
+ Blink-only DOM globals. Job-level opt-out for Chromium happens in
31
+ procs/launch.js via the `stealth` field.
32
+ */
34
33
  const StealthPlugin = require('puppeteer-extra-plugin-stealth');
35
34
  chromium.use(StealthPlugin());
36
35