@wdio/config 8.15.10 → 8.16.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.
@@ -150,7 +150,7 @@ export default class ConfigParser {
150
150
  /**
151
151
  * `this._config.spec` is string instead of Array in watch mode
152
152
  */
153
- this._config.cucumberFeaturesWithLineNumbers = Array.isArray(this._config.spec) ? [...this._config.spec] : [this._config.spec];
153
+ this._config.cucumberFeaturesWithLineNumbers = Array.isArray(this._config.spec) ? [...new Set(this._config.spec)] : [this._config.spec];
154
154
  }
155
155
  /**
156
156
  * run single spec file only, regardless of multiple-spec specification
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/config",
3
- "version": "8.15.10",
3
+ "version": "8.16.0",
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",
@@ -31,7 +31,7 @@
31
31
  "dependencies": {
32
32
  "@wdio/logger": "8.11.0",
33
33
  "@wdio/types": "8.15.10",
34
- "@wdio/utils": "8.15.10",
34
+ "@wdio/utils": "8.16.0",
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": "63a02b672216ae86a58475746a5eed5adf0d736f"
48
+ "gitHead": "69af55a5cd2aa1f1e4173b2fa2c28a7d65ceca83"
49
49
  }