k6-cucumber-steps 1.0.13 → 1.0.14

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.
@@ -40,7 +40,7 @@ const cucumberArgs = [
40
40
  "--format",
41
41
  "summary",
42
42
  "--format",
43
- "cucumber-console-formatter", // Add this line
43
+ "progress", // Add this line
44
44
  ];
45
45
 
46
46
  // Explicitly add tags, defaulting to '@loadTest' if no TAGS env variable is set
package/lib/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // Export all exports from your helper files
2
2
  export * from "../lib/helpers/buildK6Script";
3
3
  export * from "../lib/helpers/generateHeaders";
4
- export * from "..lib/helpers/resolveBody";
4
+ export * from "../lib/helpers/resolveBody";
5
5
  export * from "../lib/utils/k6Runner";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "k6-cucumber-steps",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "repository": {