@wdio/local-runner 8.0.6 → 8.0.8

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/run.js CHANGED
@@ -17,7 +17,7 @@ process.on('message', (m) => {
17
17
  log.info(`Run worker command: ${m.command}`);
18
18
  runner[m.command](m).then((result) => process.send({
19
19
  origin: 'worker',
20
- name: 'finisedCommand',
20
+ name: 'finishedCommand',
21
21
  content: {
22
22
  command: m.command,
23
23
  result
package/build/worker.js CHANGED
@@ -114,7 +114,7 @@ export default class WorkerInstance extends EventEmitter {
114
114
  /**
115
115
  * resolve pending commands
116
116
  */
117
- if (payload.name === 'finisedCommand') {
117
+ if (payload.name === 'finishedCommand') {
118
118
  this.isBusy = false;
119
119
  }
120
120
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/local-runner",
3
- "version": "8.0.6",
3
+ "version": "8.0.8",
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.6",
34
- "@wdio/types": "8.0.6",
33
+ "@wdio/runner": "8.0.8",
34
+ "@wdio/types": "8.0.8",
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": "4f63a94a3af029401d652ff1d0fa36e9057f553c"
42
+ "gitHead": "c07255fefc67137fd27f23da5f0792c10157f8c0"
43
43
  }