@wdio/cli 8.20.4 → 8.21.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.
@@ -251,7 +251,7 @@ export default class WDIOCLInterface extends EventEmitter {
251
251
  const percentCompleted = totalJobs ? Math.round(this.result.finished / totalJobs * 100) : 0;
252
252
  return this.log('\nSpec Files:\t', chalk.green(this.result.passed, 'passed') + ', ' + retries + failed + skipped + totalJobs, 'total', `(${percentCompleted}% completed)`, 'in', elapsed, this.#hasShard()
253
253
  ? `\nShard:\t\t ${this._config.shard.current} / ${this._config.shard.total}`
254
- : undefined, '\n');
254
+ : '', '\n');
255
255
  }
256
256
  finalise() {
257
257
  this.printReporters();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/cli",
3
- "version": "8.20.4",
3
+ "version": "8.21.0",
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",
@@ -46,12 +46,12 @@
46
46
  "typeScriptVersion": "3.8.3",
47
47
  "dependencies": {
48
48
  "@types/node": "^20.1.1",
49
- "@wdio/config": "8.20.3",
50
- "@wdio/globals": "8.20.4",
49
+ "@wdio/config": "8.21.0",
50
+ "@wdio/globals": "8.21.0",
51
51
  "@wdio/logger": "8.16.17",
52
52
  "@wdio/protocols": "8.20.4",
53
- "@wdio/types": "8.20.0",
54
- "@wdio/utils": "8.20.3",
53
+ "@wdio/types": "8.21.0",
54
+ "@wdio/utils": "8.21.0",
55
55
  "async-exit-hook": "^2.0.1",
56
56
  "chalk": "^5.2.0",
57
57
  "chokidar": "^3.5.3",
@@ -67,7 +67,7 @@
67
67
  "lodash.union": "^4.6.0",
68
68
  "read-pkg-up": "10.1.0",
69
69
  "recursive-readdir": "^2.2.3",
70
- "webdriverio": "8.20.4",
70
+ "webdriverio": "8.21.0",
71
71
  "yargs": "^17.7.2"
72
72
  },
73
73
  "devDependencies": {
@@ -83,5 +83,5 @@
83
83
  "publishConfig": {
84
84
  "access": "public"
85
85
  },
86
- "gitHead": "271efa5112930e8242534ea84ac6f2f75d73df3b"
86
+ "gitHead": "92a7474463e872223ee26c99112e79ad7d8eb8d3"
87
87
  }