@wdio/cli 9.4.5 → 9.5.1

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 +7 -7
package/build/index.js CHANGED
@@ -2494,7 +2494,7 @@ var Launcher = class {
2494
2494
  async _endHandler({ cid: rid, exitCode, specs, retries }) {
2495
2495
  const passed = this._isWatchModeHalted() || exitCode === 0;
2496
2496
  if (!passed && retries > 0) {
2497
- const requeue = this.configParser.getConfig().specFileRetriesDeferred !== false ? "push" : "unshift";
2497
+ const requeue = this.configParser.getConfig().specFileRetriesDeferred ? "push" : "unshift";
2498
2498
  this._schedule[parseInt(rid, 10)].specs[requeue]({ files: specs, retries: retries - 1, rid });
2499
2499
  } else {
2500
2500
  this._exitCode = this._isWatchModeHalted() ? 0 : this._exitCode || exitCode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/cli",
3
- "version": "9.4.5",
3
+ "version": "9.5.1",
4
4
  "description": "WebdriverIO testrunner command line interface",
5
5
  "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-cli",
@@ -41,12 +41,12 @@
41
41
  "dependencies": {
42
42
  "@types/node": "^20.1.1",
43
43
  "@vitest/snapshot": "^2.1.1",
44
- "@wdio/config": "9.4.4",
45
- "@wdio/globals": "9.4.5",
44
+ "@wdio/config": "9.5.0",
45
+ "@wdio/globals": "9.5.1",
46
46
  "@wdio/logger": "9.4.4",
47
47
  "@wdio/protocols": "9.4.4",
48
- "@wdio/types": "9.4.4",
49
- "@wdio/utils": "9.4.4",
48
+ "@wdio/types": "9.5.0",
49
+ "@wdio/utils": "9.5.0",
50
50
  "async-exit-hook": "^2.0.1",
51
51
  "chalk": "^5.2.0",
52
52
  "chokidar": "^4.0.0",
@@ -61,7 +61,7 @@
61
61
  "read-pkg-up": "^10.0.0",
62
62
  "recursive-readdir": "^2.2.3",
63
63
  "tsx": "^4.7.2",
64
- "webdriverio": "9.4.5",
64
+ "webdriverio": "9.5.1",
65
65
  "yargs": "^17.7.2"
66
66
  },
67
67
  "devDependencies": {
@@ -77,5 +77,5 @@
77
77
  "publishConfig": {
78
78
  "access": "public"
79
79
  },
80
- "gitHead": "cef3ee07f23f9029e3a73cfee2ab2326b5d44b05"
80
+ "gitHead": "83c76c40421092f0ce168270b5738e2826c5d0c7"
81
81
  }