k6-cucumber-steps 1.2.6 → 1.2.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "k6-cucumber-steps",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -10,10 +10,10 @@ async function linkReports() {
10
10
  return;
11
11
  }
12
12
 
13
- // Get all HTML files in the reports directory
13
+ // Get all HTML files in the reports directory, excluding any with "combined-" in the name
14
14
  const htmlFiles = fs
15
15
  .readdirSync(reportsDir)
16
- .filter((f) => f.endsWith(".html"))
16
+ .filter((f) => f.endsWith(".html") && !f.includes("combined-"))
17
17
  .map((f) => ({
18
18
  name: f,
19
19
  path: path.join(reportsDir, f),