@wdio/cli 8.40.6 → 8.42.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/build/launcher.js +2 -2
- package/package.json +7 -7
package/build/launcher.js
CHANGED
|
@@ -333,8 +333,8 @@ class Launcher {
|
|
|
333
333
|
let debugType;
|
|
334
334
|
let debugHost = '';
|
|
335
335
|
const debugPort = process.debugPort;
|
|
336
|
-
for (const
|
|
337
|
-
const debugArgs =
|
|
336
|
+
for (const arg of process.execArgv) {
|
|
337
|
+
const debugArgs = arg.match('--(debug|inspect)(?:-brk)?(?:=(.*):)?');
|
|
338
338
|
if (debugArgs) {
|
|
339
339
|
const [, type, host] = debugArgs;
|
|
340
340
|
if (type) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/cli",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.42.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",
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@types/node": "^22.2.0",
|
|
49
49
|
"@vitest/snapshot": "^2.0.4",
|
|
50
|
-
"@wdio/config": "8.
|
|
51
|
-
"@wdio/globals": "8.
|
|
50
|
+
"@wdio/config": "8.41.0",
|
|
51
|
+
"@wdio/globals": "8.42.0",
|
|
52
52
|
"@wdio/logger": "8.38.0",
|
|
53
53
|
"@wdio/protocols": "8.40.3",
|
|
54
|
-
"@wdio/types": "8.
|
|
55
|
-
"@wdio/utils": "8.
|
|
54
|
+
"@wdio/types": "8.41.0",
|
|
55
|
+
"@wdio/utils": "8.41.0",
|
|
56
56
|
"async-exit-hook": "^2.0.1",
|
|
57
57
|
"chalk": "^5.2.0",
|
|
58
58
|
"chokidar": "^4.0.0",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"lodash.union": "^4.6.0",
|
|
68
68
|
"read-pkg-up": "10.0.0",
|
|
69
69
|
"recursive-readdir": "^2.2.3",
|
|
70
|
-
"webdriverio": "8.
|
|
70
|
+
"webdriverio": "8.42.0",
|
|
71
71
|
"yargs": "^17.7.2"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"publishConfig": {
|
|
84
84
|
"access": "public"
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "e62b14b9da7a0812e9936dcb0731a7ef7ff9b75f"
|
|
87
87
|
}
|