@wdio/cli 8.14.3 → 8.14.4

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.
@@ -202,7 +202,7 @@ function selectDefaultService(serviceNames) {
202
202
  }
203
203
  function prioServiceOrderFor(serviceNamesParam) {
204
204
  const serviceNames = Array.isArray(serviceNamesParam) ? serviceNamesParam : [serviceNamesParam];
205
- let services = Object.create(SUPPORTED_PACKAGES.service);
205
+ let services = SUPPORTED_PACKAGES.service;
206
206
  for (const serviceName of serviceNames) {
207
207
  const index = services.findIndex(({ name }) => name === serviceName);
208
208
  services = [services[index], ...services.slice(0, index), ...services.slice(index + 1)];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/cli",
3
- "version": "8.14.3",
3
+ "version": "8.14.4",
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",
@@ -82,5 +82,5 @@
82
82
  "publishConfig": {
83
83
  "access": "public"
84
84
  },
85
- "gitHead": "5229517c22d25975c0e5dd3207b307f770b87605"
85
+ "gitHead": "3428f40f5ba4f257eddb0785ac1d5c4cc259a522"
86
86
  }