@wdio/cli 8.42.0 → 8.43.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.
@@ -58,10 +58,10 @@ export declare const builder: (yargs: Argv) => Argv<import("yargs").Omit<{}, str
58
58
  readonly desc: "overwrites the specs attribute and runs the defined suite";
59
59
  readonly type: "array";
60
60
  } | {
61
- readonly desc: "run only a certain spec file - overrides specs piped from stdin";
61
+ readonly desc: "run only a certain spec file or wildcard - overrides specs piped from stdin";
62
62
  readonly type: "array";
63
63
  } | {
64
- readonly desc: "exclude certain spec file from the test run - overrides exclude piped from stdin";
64
+ readonly desc: "exclude certain spec file or wildcard from the test run - overrides exclude piped from stdin";
65
65
  readonly type: "array";
66
66
  } | {
67
67
  readonly desc: "Repeat specific specs and/or suites N times";
@@ -70,11 +70,11 @@ export declare const cmdArgs: {
70
70
  readonly type: "array";
71
71
  };
72
72
  readonly spec: {
73
- readonly desc: "run only a certain spec file - overrides specs piped from stdin";
73
+ readonly desc: "run only a certain spec file or wildcard - overrides specs piped from stdin";
74
74
  readonly type: "array";
75
75
  };
76
76
  readonly exclude: {
77
- readonly desc: "exclude certain spec file from the test run - overrides exclude piped from stdin";
77
+ readonly desc: "exclude certain spec file or wildcard from the test run - overrides exclude piped from stdin";
78
78
  readonly type: "array";
79
79
  };
80
80
  readonly 'multi-run': {
@@ -187,11 +187,11 @@ export declare const builder: (yargs: Argv) => Argv<import("yargs").Omit<{}, "fr
187
187
  readonly type: "array";
188
188
  };
189
189
  readonly spec: {
190
- readonly desc: "run only a certain spec file - overrides specs piped from stdin";
190
+ readonly desc: "run only a certain spec file or wildcard - overrides specs piped from stdin";
191
191
  readonly type: "array";
192
192
  };
193
193
  readonly exclude: {
194
- readonly desc: "exclude certain spec file from the test run - overrides exclude piped from stdin";
194
+ readonly desc: "exclude certain spec file or wildcard from the test run - overrides exclude piped from stdin";
195
195
  readonly type: "array";
196
196
  };
197
197
  readonly 'multi-run': {
@@ -91,11 +91,11 @@ export const cmdArgs = {
91
91
  type: 'array'
92
92
  },
93
93
  spec: {
94
- desc: 'run only a certain spec file - overrides specs piped from stdin',
94
+ desc: 'run only a certain spec file or wildcard - overrides specs piped from stdin',
95
95
  type: 'array'
96
96
  },
97
97
  exclude: {
98
- desc: 'exclude certain spec file from the test run - overrides exclude piped from stdin',
98
+ desc: 'exclude certain spec file or wildcard from the test run - overrides exclude piped from stdin',
99
99
  type: 'array'
100
100
  },
101
101
  'multi-run': {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/cli",
3
- "version": "8.42.0",
3
+ "version": "8.43.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",
@@ -47,8 +47,8 @@
47
47
  "dependencies": {
48
48
  "@types/node": "^22.2.0",
49
49
  "@vitest/snapshot": "^2.0.4",
50
- "@wdio/config": "8.41.0",
51
- "@wdio/globals": "8.42.0",
50
+ "@wdio/config": "8.43.0",
51
+ "@wdio/globals": "8.43.0",
52
52
  "@wdio/logger": "8.38.0",
53
53
  "@wdio/protocols": "8.40.3",
54
54
  "@wdio/types": "8.41.0",
@@ -67,7 +67,7 @@
67
67
  "lodash.union": "^4.6.0",
68
68
  "read-pkg-up": "10.0.0",
69
69
  "recursive-readdir": "^2.2.3",
70
- "webdriverio": "8.42.0",
70
+ "webdriverio": "8.43.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": "e62b14b9da7a0812e9936dcb0731a7ef7ff9b75f"
86
+ "gitHead": "f3783f61e0c62001cda71231fb4d947951f6f10d"
87
87
  }