@wdio/local-runner 8.2.4 → 8.3.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/index.d.ts CHANGED
@@ -25,6 +25,6 @@ export default class LocalRunner {
25
25
  * @return {Promise} resolves when all worker have been shutdown or
26
26
  * a timeout was reached
27
27
  */
28
- shutdown(): Promise<void>;
28
+ shutdown(): Promise<boolean>;
29
29
  }
30
30
  //# sourceMappingURL=index.d.ts.map
package/build/index.js CHANGED
@@ -74,7 +74,7 @@ export default class LocalRunner {
74
74
  clearTimeout(timeout);
75
75
  clearInterval(interval);
76
76
  log.info('shutting down');
77
- return resolve();
77
+ return resolve(true);
78
78
  }
79
79
  }, 250);
80
80
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/local-runner",
3
- "version": "8.2.4",
3
+ "version": "8.3.0",
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/node": "^18.0.0",
31
31
  "@wdio/logger": "8.1.0",
32
32
  "@wdio/repl": "8.1.0",
33
- "@wdio/runner": "8.2.4",
34
- "@wdio/types": "8.1.2",
33
+ "@wdio/runner": "8.3.0",
34
+ "@wdio/types": "8.3.0",
35
35
  "async-exit-hook": "^2.0.1",
36
36
  "split2": "^4.1.0",
37
37
  "stream-buffers": "^3.0.2"
@@ -43,5 +43,5 @@
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "gitHead": "eba541a77dbc42173717e1c106a7c4d3ccb198f5"
46
+ "gitHead": "156a246e8117463cf3c762d2da5bf9eef3a476ea"
47
47
  }