@wdio/config 8.16.15 → 8.16.17

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.
@@ -205,7 +205,7 @@ export default class ConfigParser {
205
205
  * attributes from CLI, config and capabilities
206
206
  */
207
207
  getSpecs(capSpecs, capExclude) {
208
- const isSpecParamPassed = Array.isArray(this._config.spec);
208
+ const isSpecParamPassed = Array.isArray(this._config.spec) && this._config.spec.length >= 1;
209
209
  const multiRun = this._config.multiRun;
210
210
  // when CLI --spec is explicitly specified, this._config.specs contains the filtered
211
211
  // specs matching the passed pattern else the specs defined inside the config are returned
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/config",
3
- "version": "8.16.15",
3
+ "version": "8.16.17",
4
4
  "description": "A helper utility to parse and validate WebdriverIO options",
5
5
  "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-config",
@@ -29,9 +29,9 @@
29
29
  "url": "https://github.com/webdriverio/webdriverio/issues"
30
30
  },
31
31
  "dependencies": {
32
- "@wdio/logger": "8.11.0",
32
+ "@wdio/logger": "8.16.17",
33
33
  "@wdio/types": "8.16.12",
34
- "@wdio/utils": "8.16.15",
34
+ "@wdio/utils": "8.16.17",
35
35
  "decamelize": "^6.0.0",
36
36
  "deepmerge-ts": "^5.0.0",
37
37
  "glob": "^10.2.2",
@@ -45,5 +45,5 @@
45
45
  "minimatch": "^9.0.0",
46
46
  "tsconfig-paths": "^4.1.0"
47
47
  },
48
- "gitHead": "5adda88a438d57b86f8e050299371b3095c4295c"
48
+ "gitHead": "5bb4539c96e11a7ece83630b30c0a54903b55c0e"
49
49
  }