@wdio/cli 8.36.1 → 8.37.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/commands/run.js +1 -1
- package/package.json +7 -7
package/build/commands/run.js
CHANGED
|
@@ -145,7 +145,7 @@ export const builder = (yargs) => {
|
|
|
145
145
|
};
|
|
146
146
|
export function launchWithStdin(wdioConfPath, params) {
|
|
147
147
|
let stdinData = '';
|
|
148
|
-
const stdin = process.
|
|
148
|
+
const stdin = process.stdin;
|
|
149
149
|
stdin.setEncoding('utf8');
|
|
150
150
|
stdin.on('data', (data) => {
|
|
151
151
|
stdinData += data;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/cli",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.37.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": "^20.1.1",
|
|
49
49
|
"@vitest/snapshot": "^1.2.1",
|
|
50
|
-
"@wdio/config": "8.
|
|
51
|
-
"@wdio/globals": "8.
|
|
50
|
+
"@wdio/config": "8.37.0",
|
|
51
|
+
"@wdio/globals": "8.37.0",
|
|
52
52
|
"@wdio/logger": "8.28.0",
|
|
53
53
|
"@wdio/protocols": "8.32.0",
|
|
54
|
-
"@wdio/types": "8.
|
|
55
|
-
"@wdio/utils": "8.
|
|
54
|
+
"@wdio/types": "8.37.0",
|
|
55
|
+
"@wdio/utils": "8.37.0",
|
|
56
56
|
"async-exit-hook": "^2.0.1",
|
|
57
57
|
"chalk": "^5.2.0",
|
|
58
58
|
"chokidar": "^3.5.3",
|
|
@@ -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.37.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": "cefb415aa315075fb6b682c6d059d9ff37fbefb8"
|
|
87
87
|
}
|