@wdio/local-runner 8.23.0 → 8.23.2
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/index.d.ts +2 -2
- package/build/index.js +2 -2
- package/package.json +5 -5
package/build/index.d.ts
CHANGED
|
@@ -14,9 +14,9 @@ export default class LocalRunner {
|
|
|
14
14
|
stderr: WritableStreamBuffer;
|
|
15
15
|
constructor(_options: never, _config: Options.Testrunner);
|
|
16
16
|
/**
|
|
17
|
-
* nothing to
|
|
17
|
+
* nothing to initialize when running locally
|
|
18
18
|
*/
|
|
19
|
-
|
|
19
|
+
initialize(): void;
|
|
20
20
|
getWorkerCount(): number;
|
|
21
21
|
run({ command, args, ...workerOptions }: RunArgs): Promise<WorkerInstance>;
|
|
22
22
|
/**
|
package/build/index.js
CHANGED
|
@@ -14,9 +14,9 @@ export default class LocalRunner {
|
|
|
14
14
|
this._config = _config;
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* nothing to
|
|
17
|
+
* nothing to initialize when running locally
|
|
18
18
|
*/
|
|
19
|
-
|
|
19
|
+
initialize() { }
|
|
20
20
|
getWorkerCount() {
|
|
21
21
|
return Object.keys(this.workerPool).length;
|
|
22
22
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/local-runner",
|
|
3
|
-
"version": "8.23.
|
|
3
|
+
"version": "8.23.2",
|
|
4
4
|
"description": "A WebdriverIO runner to run tests locally",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-local-runner",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@types/node": "^20.1.0",
|
|
34
34
|
"@wdio/logger": "8.16.17",
|
|
35
|
-
"@wdio/repl": "8.
|
|
36
|
-
"@wdio/runner": "8.23.
|
|
37
|
-
"@wdio/types": "8.23.
|
|
35
|
+
"@wdio/repl": "8.23.1",
|
|
36
|
+
"@wdio/runner": "8.23.2",
|
|
37
|
+
"@wdio/types": "8.23.1",
|
|
38
38
|
"async-exit-hook": "^2.0.1",
|
|
39
39
|
"split2": "^4.1.0",
|
|
40
40
|
"stream-buffers": "^3.0.2"
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "b0f0086ea01f3028228d449cef7b5dcdd853f08c"
|
|
50
50
|
}
|