@wdio/cli 9.28.0 → 9.29.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.
Files changed (2) hide show
  1. package/build/index.js +8 -0
  2. package/package.json +9 -9
package/build/index.js CHANGED
@@ -549,6 +549,9 @@ var WDIOCLInterface = class extends EventEmitter {
549
549
  this.setup();
550
550
  this.onStart();
551
551
  }
552
+ _config;
553
+ totalWorkerCnt;
554
+ _isWatchMode;
552
555
  #snapshotManager = new SnapshotManager({
553
556
  updateSnapshot: "new"
554
557
  // ignored in this context
@@ -818,6 +821,9 @@ var Launcher = class {
818
821
  this._isWatchMode = _isWatchMode;
819
822
  this.configParser = new ConfigParser2(this._configFilePath, this._args);
820
823
  }
824
+ _configFilePath;
825
+ _args;
826
+ _isWatchMode;
821
827
  #isInitialized = false;
822
828
  configParser;
823
829
  isMultiremote = false;
@@ -1290,6 +1296,8 @@ var Watcher = class {
1290
1296
  log4.info("Starting launcher in watch mode");
1291
1297
  this._launcher = new launcher_default(this._configFile, this._args, true);
1292
1298
  }
1299
+ _configFile;
1300
+ _args;
1293
1301
  _launcher;
1294
1302
  _specs = [];
1295
1303
  async watch() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/cli",
3
- "version": "9.28.0",
3
+ "version": "9.29.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",
@@ -40,16 +40,16 @@
40
40
  "typeScriptVersion": "3.8.3",
41
41
  "dependencies": {
42
42
  "@vitest/snapshot": "^2.1.1",
43
- "@wdio/config": "9.28.0",
44
- "@wdio/globals": "9.28.0",
43
+ "@wdio/config": "9.29.0",
44
+ "@wdio/globals": "9.29.0",
45
45
  "@wdio/logger": "9.18.0",
46
- "@wdio/protocols": "9.28.0",
47
- "@wdio/types": "9.28.0",
48
- "@wdio/utils": "9.28.0",
46
+ "@wdio/protocols": "9.29.0",
47
+ "@wdio/types": "9.29.0",
48
+ "@wdio/utils": "9.29.0",
49
49
  "async-exit-hook": "^2.0.1",
50
50
  "chalk": "^5.4.1",
51
51
  "chokidar": "^4.0.0",
52
- "create-wdio": "9.28.0",
52
+ "create-wdio": "9.29.0",
53
53
  "dotenv": "^17.2.0",
54
54
  "import-meta-resolve": "^4.0.0",
55
55
  "lodash.flattendeep": "^4.4.0",
@@ -57,7 +57,7 @@
57
57
  "lodash.union": "^4.6.0",
58
58
  "read-pkg-up": "^10.0.0",
59
59
  "tsx": "^4.7.2",
60
- "webdriverio": "9.28.0",
60
+ "webdriverio": "9.29.0",
61
61
  "yargs": "^17.7.2"
62
62
  },
63
63
  "devDependencies": {
@@ -70,5 +70,5 @@
70
70
  "publishConfig": {
71
71
  "access": "public"
72
72
  },
73
- "gitHead": "66baa0049385cd9161677e1e6728fde90db56f35"
73
+ "gitHead": "c7808c59ca3ab6a677230cebd688454426cba0f2"
74
74
  }