@wdio/cli 9.7.3 → 9.9.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.
Files changed (2) hide show
  1. package/build/index.js +2 -2
  2. package/package.json +7 -7
package/build/index.js CHANGED
@@ -2430,8 +2430,8 @@ var Launcher = class {
2430
2430
  let debugType;
2431
2431
  let debugHost = "";
2432
2432
  const debugPort = process.debugPort;
2433
- for (const i in process.execArgv) {
2434
- const debugArgs2 = process.execArgv[i].match("--(debug|inspect)(?:-brk)?(?:=(.*):)?");
2433
+ for (const arg of process.execArgv) {
2434
+ const debugArgs2 = arg.match("--(debug|inspect)(?:-brk)?(?:=(.*):)?");
2435
2435
  if (debugArgs2) {
2436
2436
  const [, type, host] = debugArgs2;
2437
2437
  if (type) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/cli",
3
- "version": "9.7.3",
3
+ "version": "9.9.0",
4
4
  "description": "WebdriverIO testrunner command line interface",
5
5
  "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-cli",
@@ -41,12 +41,12 @@
41
41
  "dependencies": {
42
42
  "@types/node": "^20.1.1",
43
43
  "@vitest/snapshot": "^2.1.1",
44
- "@wdio/config": "9.7.3",
45
- "@wdio/globals": "9.7.3",
44
+ "@wdio/config": "9.9.0",
45
+ "@wdio/globals": "9.9.0",
46
46
  "@wdio/logger": "9.4.4",
47
47
  "@wdio/protocols": "9.7.0",
48
- "@wdio/types": "9.6.3",
49
- "@wdio/utils": "9.7.3",
48
+ "@wdio/types": "9.9.0",
49
+ "@wdio/utils": "9.9.0",
50
50
  "async-exit-hook": "^2.0.1",
51
51
  "chalk": "^5.2.0",
52
52
  "chokidar": "^4.0.0",
@@ -61,7 +61,7 @@
61
61
  "read-pkg-up": "^10.0.0",
62
62
  "recursive-readdir": "^2.2.3",
63
63
  "tsx": "^4.7.2",
64
- "webdriverio": "9.7.3",
64
+ "webdriverio": "9.9.0",
65
65
  "yargs": "^17.7.2"
66
66
  },
67
67
  "devDependencies": {
@@ -77,5 +77,5 @@
77
77
  "publishConfig": {
78
78
  "access": "public"
79
79
  },
80
- "gitHead": "839ac572881d2b951c5e12feaa828f2b7eb19a96"
80
+ "gitHead": "620e092391d7bcc71cd7cd55ad146ad72e522da9"
81
81
  }