k6-cucumber-steps 1.0.20 → 1.0.21

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.
package/.env CHANGED
@@ -13,5 +13,5 @@ TAGS=@loadTest
13
13
  BASE_URL=https://postman-echo.com
14
14
 
15
15
  # Secret Parameters
16
- API_KEY=Talent123!
17
- BEARER_TOKEN=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwczovL3J1bnRocm91Z2gtdHdvLnNlYW1sZXNzaHJtcy5jb20vYXBpL3YxL2F1dGgvbG9naW4iLCJpYXQiOjE3NDU2MjAwNDEsImV4cCI6MTc0NTYyMzY0MSwibmJmIjoxNzQ1NjIwMDQxLCJqdGkiOiJkQmZHZW9Takh3MlZ0NEF6Iiwic3ViIjoiMjI2IiwicHJ2IjoiYzIwM2QyYmJmODZhN2IyNzcyZWUyNGNhODIyNzBmOTA5NTgyZjg3YyJ9.WGdq8QMpSZvCJB6cj0hn3xrUIfhIbOE4Ft4bo8u1JKw
16
+ API_KEY=Ta344
17
+ BEARER_TOKEN=efhIbOE4Ft4bo8u1JKw
@@ -43,8 +43,7 @@ const cucumberArgs = [
43
43
  "progress", // Add this line
44
44
  ];
45
45
 
46
- // Explicitly add tags, defaulting to '@loadTest' if no TAGS env variable is set
47
- const tagsFromEnv = process.env.TAGS || "@loadTest";
46
+ const tagsFromEnv = process.env.TAGS || " ";
48
47
  cucumberArgs.push("--tags", tagsFromEnv);
49
48
 
50
49
  if (argv.feature) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "k6-cucumber-steps",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "repository": {