executable-stories-formatters 1.13.0 → 1.15.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.
- package/dist/cli.js +191 -39
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +122 -25
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +67 -1
- package/dist/index.d.ts +67 -1
- package/dist/index.js +122 -25
- package/dist/index.js.map +1 -1
- package/package.json +15 -15
- package/schemas/scenario-index-v1.json +9 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "executable-stories-formatters",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.15.0",
|
|
4
4
|
"description": "Cucumber-compatible report formats (HTML, Markdown, JUnit XML, Cucumber JSON) for executable-stories test results.",
|
|
5
5
|
"author": "Jag Reehal <jag@jagreehal.com>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -55,27 +55,27 @@
|
|
|
55
55
|
"formatter"
|
|
56
56
|
],
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@cucumber/html-formatter": "^
|
|
59
|
-
"@cucumber/messages": "^
|
|
58
|
+
"@cucumber/html-formatter": "^24.1.1",
|
|
59
|
+
"@cucumber/messages": "^34.2.1",
|
|
60
60
|
"ajv": "^8.20.0",
|
|
61
61
|
"github-slugger": "^2.0.0",
|
|
62
62
|
"yaml": "^2.9.0",
|
|
63
|
-
"react": "^19.2.
|
|
64
|
-
"react-dom": "^19.2.
|
|
65
|
-
"executable-stories-core": "0.
|
|
66
|
-
"executable-stories-react": "0.
|
|
63
|
+
"react": "^19.2.8",
|
|
64
|
+
"react-dom": "^19.2.8",
|
|
65
|
+
"executable-stories-core": "0.23.0",
|
|
66
|
+
"executable-stories-react": "0.14.0"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@faker-js/faker": "^10.
|
|
70
|
-
"@storybook/html": "^10.
|
|
71
|
-
"@storybook/html-vite": "^10.
|
|
72
|
-
"@types/node": "^
|
|
73
|
-
"storybook": "^10.
|
|
69
|
+
"@faker-js/faker": "^10.6.0",
|
|
70
|
+
"@storybook/html": "^10.5.10",
|
|
71
|
+
"@storybook/html-vite": "^10.5.10",
|
|
72
|
+
"@types/node": "^26.2.0",
|
|
73
|
+
"storybook": "^10.5.10",
|
|
74
74
|
"tsup": "^8.5.1",
|
|
75
|
-
"tsx": "^4.
|
|
75
|
+
"tsx": "^4.23.12",
|
|
76
76
|
"typescript": "~6.0.3",
|
|
77
|
-
"vitest": "^4.1.
|
|
78
|
-
"vitest-mock-extended": "^
|
|
77
|
+
"vitest": "^4.1.11",
|
|
78
|
+
"vitest-mock-extended": "^5.1.1"
|
|
79
79
|
},
|
|
80
80
|
"scripts": {
|
|
81
81
|
"embed-assets": "node scripts/embed-react-assets.mjs",
|
|
@@ -71,6 +71,10 @@
|
|
|
71
71
|
"message": { "type": "string" },
|
|
72
72
|
"stack": { "type": "string" }
|
|
73
73
|
}
|
|
74
|
+
},
|
|
75
|
+
"assertionState": {
|
|
76
|
+
"enum": ["asserted", "unasserted", "unobserved"],
|
|
77
|
+
"description": "Whether the scenario's claim was checked. Always emitted since 1.x, optional in the schema so pre-assertion v1 artifacts stay valid."
|
|
74
78
|
}
|
|
75
79
|
}
|
|
76
80
|
},
|
|
@@ -86,7 +90,11 @@
|
|
|
86
90
|
"status": { "$ref": "#/$defs/status" },
|
|
87
91
|
"durationMs": { "type": "number" },
|
|
88
92
|
"errorMessage": { "type": "string" },
|
|
89
|
-
"docKinds": { "type": "array", "items": { "type": "string" } }
|
|
93
|
+
"docKinds": { "type": "array", "items": { "type": "string" } },
|
|
94
|
+
"assertions": {
|
|
95
|
+
"type": "number",
|
|
96
|
+
"description": "Assertions the framework observed in this step. Absent means the adapter has no counter to read; 0 means it counted none."
|
|
97
|
+
}
|
|
90
98
|
}
|
|
91
99
|
}
|
|
92
100
|
}
|