@wdio/local-runner 9.2.1 → 9.2.4

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 +1 -1
  2. package/package.json +4 -4
package/build/index.js CHANGED
@@ -277,7 +277,7 @@ var WorkerInstance = class extends EventEmitter {
277
277
  childProcess.on("message", this._handleMessage.bind(this));
278
278
  childProcess.on("error", this._handleError.bind(this));
279
279
  childProcess.on("exit", this._handleExit.bind(this));
280
- if (!process.env.VITEST_WORKER_ID) {
280
+ if (!process.env.WDIO_UNIT_TESTS) {
281
281
  if (childProcess.stdout !== null) {
282
282
  if (this.config.groupLogsByTestSpec) {
283
283
  runnerTransformStream(cid, childProcess.stdout, this.logsAggregator);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/local-runner",
3
- "version": "9.2.1",
3
+ "version": "9.2.4",
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",
@@ -39,8 +39,8 @@
39
39
  "@types/node": "^20.1.0",
40
40
  "@wdio/logger": "9.1.3",
41
41
  "@wdio/repl": "9.0.8",
42
- "@wdio/runner": "9.2.1",
43
- "@wdio/types": "9.1.3",
42
+ "@wdio/runner": "9.2.4",
43
+ "@wdio/types": "9.2.2",
44
44
  "async-exit-hook": "^2.0.1",
45
45
  "split2": "^4.1.0",
46
46
  "stream-buffers": "^3.0.2"
@@ -52,5 +52,5 @@
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
- "gitHead": "3da8b097c684b0ed9cda7224c41f96151bcd4104"
55
+ "gitHead": "9e40f2368a612cd7882f06a55afdc52ead201ec3"
56
56
  }