@wdio/local-runner 8.0.5 → 8.0.7

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/worker.js +1 -1
  2. package/package.json +4 -4
package/build/worker.js CHANGED
@@ -9,7 +9,7 @@ import RunnerStream from './stdStream.js';
9
9
  const log = logger('@wdio/local-runner');
10
10
  const replQueue = new ReplQueue();
11
11
  const __dirname = path.dirname(url.fileURLToPath(import.meta.url));
12
- const ACCEPTABLE_BUSY_COMMANDS = ['switchDebugState', 'endSession'];
12
+ const ACCEPTABLE_BUSY_COMMANDS = ['switchDebugState', 'workerHookExecution', 'endSession'];
13
13
  const stdOutStream = new RunnerStream();
14
14
  const stdErrStream = new RunnerStream();
15
15
  stdOutStream.pipe(process.stdout);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/local-runner",
3
- "version": "8.0.5",
3
+ "version": "8.0.7",
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",
@@ -30,8 +30,8 @@
30
30
  "@types/stream-buffers": "^3.0.4",
31
31
  "@wdio/logger": "8.0.0",
32
32
  "@wdio/repl": "8.0.0",
33
- "@wdio/runner": "8.0.5",
34
- "@wdio/types": "8.0.0",
33
+ "@wdio/runner": "8.0.7",
34
+ "@wdio/types": "8.0.7",
35
35
  "async-exit-hook": "^2.0.1",
36
36
  "split2": "^4.1.0",
37
37
  "stream-buffers": "^3.0.2"
@@ -39,5 +39,5 @@
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "3c1364b37331acc9124d7f5378937252d069936b"
42
+ "gitHead": "a874a82a727634d1323fff05c17455ba0907a020"
43
43
  }