@axe-core/cli 4.9.2-dfa602b.0 → 4.10.1-099818b.0

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/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axe-core/cli",
3
- "version": "4.9.1",
3
+ "version": "4.10.0",
4
4
  "description": "A CLI for accessibility testing using axe-core",
5
5
  "author": {
6
6
  "name": "Wilco Fiers",
@@ -47,12 +47,13 @@
47
47
  "testing"
48
48
  ],
49
49
  "dependencies": {
50
- "@axe-core/webdriverjs": "^4.9.1",
51
- "axe-core": "~4.9.1",
50
+ "@axe-core/webdriverjs": "^4.10.0",
51
+ "axe-core": "~4.10.1",
52
52
  "chromedriver": "latest",
53
53
  "colors": "^1.4.0",
54
54
  "commander": "^9.4.1",
55
- "selenium-webdriver": "~4.21.0"
55
+ "dotenv": "^16.4.5",
56
+ "selenium-webdriver": "~4.22.0"
56
57
  },
57
58
  "devDependencies": {
58
59
  "@types/chai": "^4.3.3",
@@ -63,8 +64,8 @@
63
64
  "chai": "^4.3.6",
64
65
  "execa": "5.1.1",
65
66
  "mocha": "^10.0.0",
66
- "nyc": "^15.1.0",
67
- "rimraf": "^5.0.5",
67
+ "nyc": "^17.1.0",
68
+ "rimraf": "^6.0.1",
68
69
  "sinon": "^18.0.0",
69
70
  "tempy": "^1.0.0",
70
71
  "ts-node": "^10.9.1",
@@ -85,11 +85,11 @@ describe('startDriver', () => {
85
85
  chai_1.assert.equal(chromedriverPath, config.chromedriverPath);
86
86
  }));
87
87
  it('passes the --no-sandbox argument to chromeOptions', () => __awaiter(void 0, void 0, void 0, function* () {
88
- var _b;
88
+ var _a;
89
89
  browser = 'chrome-headless';
90
90
  config.chromeOptions = ['--no-sandbox'];
91
91
  driver = yield (0, webdriver_1.startDriver)(config);
92
- const options = (_b = config === null || config === void 0 ? void 0 : config.builder) === null || _b === void 0 ? void 0 : _b.getChromeOptions();
92
+ const options = (_a = config === null || config === void 0 ? void 0 : config.builder) === null || _a === void 0 ? void 0 : _a.getChromeOptions();
93
93
  chai_1.assert.isArray(options === null || options === void 0 ? void 0 : options.get('goog:chromeOptions').args);
94
94
  chai_1.assert.deepEqual(options === null || options === void 0 ? void 0 : options.get('goog:chromeOptions').args, [
95
95
  'headless',
@@ -97,11 +97,11 @@ describe('startDriver', () => {
97
97
  ]);
98
98
  }));
99
99
  it('passes multiple arguments argument to chromeOptions', () => __awaiter(void 0, void 0, void 0, function* () {
100
- var _c;
100
+ var _a;
101
101
  browser = 'chrome-headless';
102
102
  config.chromeOptions = ['no-sandbox', 'disable-dev-shm-usage'];
103
103
  driver = yield (0, webdriver_1.startDriver)(config);
104
- const options = (_c = config === null || config === void 0 ? void 0 : config.builder) === null || _c === void 0 ? void 0 : _c.getChromeOptions();
104
+ const options = (_a = config === null || config === void 0 ? void 0 : config.builder) === null || _a === void 0 ? void 0 : _a.getChromeOptions();
105
105
  chai_1.assert.isArray(options === null || options === void 0 ? void 0 : options.get('goog:chromeOptions').args);
106
106
  chai_1.assert.deepEqual(options === null || options === void 0 ? void 0 : options.get('goog:chromeOptions').args, [
107
107
  'headless',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axe-core/cli",
3
- "version": "4.9.2-dfa602b.0+dfa602b",
3
+ "version": "4.10.1-099818b.0+099818b",
4
4
  "description": "A CLI for accessibility testing using axe-core",
5
5
  "author": {
6
6
  "name": "Wilco Fiers",
@@ -47,12 +47,13 @@
47
47
  "testing"
48
48
  ],
49
49
  "dependencies": {
50
- "@axe-core/webdriverjs": "4.9.2-dfa602b.0+dfa602b",
51
- "axe-core": "~4.9.1",
50
+ "@axe-core/webdriverjs": "4.10.1-099818b.0+099818b",
51
+ "axe-core": "~4.10.1",
52
52
  "chromedriver": "latest",
53
53
  "colors": "^1.4.0",
54
54
  "commander": "^9.4.1",
55
- "selenium-webdriver": "~4.21.0"
55
+ "dotenv": "^16.4.5",
56
+ "selenium-webdriver": "~4.22.0"
56
57
  },
57
58
  "devDependencies": {
58
59
  "@types/chai": "^4.3.3",
@@ -63,8 +64,8 @@
63
64
  "chai": "^4.3.6",
64
65
  "execa": "5.1.1",
65
66
  "mocha": "^10.0.0",
66
- "nyc": "^15.1.0",
67
- "rimraf": "^5.0.5",
67
+ "nyc": "^17.1.0",
68
+ "rimraf": "^6.0.1",
68
69
  "sinon": "^18.0.0",
69
70
  "tempy": "^1.0.0",
70
71
  "ts-node": "^10.9.1",
@@ -90,5 +91,5 @@
90
91
  "src/testutils"
91
92
  ]
92
93
  },
93
- "gitHead": "dfa602bcb97b96865ec31515d837ffed77dd8f0c"
94
+ "gitHead": "099818bcef1da11df1700027cd6487e338e5cbd2"
94
95
  }