@wdio/cucumber-framework 8.7.0 → 8.8.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.
Files changed (2) hide show
  1. package/build/utils.js +1 -1
  2. package/package.json +6 -6
package/build/utils.js CHANGED
@@ -110,7 +110,7 @@ export function setUserHookNames(options) {
110
110
  * @param {*} testCase
111
111
  */
112
112
  export function filterPickles(capabilities, pickle) {
113
- const skipTag = /^@skip\((.*)\)$/;
113
+ const skipTag = /^@skip$|^@skip\((.*)\)$/;
114
114
  const match = (value, expr) => {
115
115
  if (Array.isArray(expr)) {
116
116
  return expr.indexOf(value) >= 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/cucumber-framework",
3
- "version": "8.7.0",
3
+ "version": "8.8.4",
4
4
  "description": "A WebdriverIO plugin. Adapter for Cucumber.js testing framework.",
5
5
  "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-cucumber-framework",
@@ -39,13 +39,13 @@
39
39
  "typeScriptVersion": "3.8.3",
40
40
  "dependencies": {
41
41
  "@cucumber/cucumber": "8.5.3",
42
- "@cucumber/gherkin": "26.1.0",
42
+ "@cucumber/gherkin": "26.2.0",
43
43
  "@cucumber/gherkin-streams": "^5.0.0",
44
- "@cucumber/messages": "21.0.1",
44
+ "@cucumber/messages": "22.0.0",
45
45
  "@types/node": "^18.0.0",
46
46
  "@wdio/logger": "8.6.6",
47
- "@wdio/types": "8.7.0",
48
- "@wdio/utils": "8.7.0",
47
+ "@wdio/types": "8.8.4",
48
+ "@wdio/utils": "8.8.4",
49
49
  "glob": "^9.3.0",
50
50
  "is-glob": "^4.0.0",
51
51
  "mockery": "^2.1.0"
@@ -57,5 +57,5 @@
57
57
  "publishConfig": {
58
58
  "access": "public"
59
59
  },
60
- "gitHead": "2615d963dc561aed0920c519ed5c27720e1a636c"
60
+ "gitHead": "e88a296000de70344fbf19d0d63a54cb1a617427"
61
61
  }