executable-stories-formatters 1.14.0 → 1.16.1
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 +767 -290
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +112 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +48 -1
- package/dist/index.d.ts +48 -1
- package/dist/index.js +110 -14
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/schemas/README.md +1 -0
- package/schemas/examples/dotnet.json +5 -1
- package/schemas/examples/junit5.json +4 -0
- package/schemas/examples/pytest.json +4 -0
- package/schemas/examples/rust.json +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "executable-stories-formatters",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.1",
|
|
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",
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"yaml": "^2.9.0",
|
|
63
63
|
"react": "^19.2.8",
|
|
64
64
|
"react-dom": "^19.2.8",
|
|
65
|
-
"executable-stories-core": "0.
|
|
66
|
-
"executable-stories-react": "0.
|
|
65
|
+
"executable-stories-core": "0.24.0",
|
|
66
|
+
"executable-stories-react": "0.15.0"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@faker-js/faker": "^10.6.0",
|
package/schemas/README.md
CHANGED
|
@@ -182,6 +182,7 @@ SUBCOMMANDS
|
|
|
182
182
|
| `--html-title <title>` | `Test Results` | HTML report title |
|
|
183
183
|
| `--html-no-syntax-highlighting` | | Disable syntax highlighting in HTML (enabled by default) |
|
|
184
184
|
| `--html-no-mermaid` | | Disable Mermaid diagrams in HTML (enabled by default) |
|
|
185
|
+
| `--html-share` | | Show the Share button in the HTML report (hidden by default) |
|
|
185
186
|
| `--stdin` | | Read JSON from stdin instead of file |
|
|
186
187
|
| `--json-summary` | off | Print machine-parsable JSON summary |
|
|
187
188
|
| `--emit-canonical <path>` | | Write canonical JSON to given path |
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"projectRoot": "/home/ci/myapp",
|
|
4
|
+
"coveredSourceFiles": [
|
|
5
|
+
"tests/MyApp.Tests/Auth/LoginTests.cs",
|
|
6
|
+
"tests/MyApp.Tests/Cart/CheckoutTests.cs"
|
|
7
|
+
],
|
|
4
8
|
"startedAtMs": 1706745600000,
|
|
5
9
|
"finishedAtMs": 1706745615000,
|
|
6
10
|
"meta": {
|
|
7
11
|
"framework": "xunit",
|
|
8
|
-
"dotnetVersion": "
|
|
12
|
+
"dotnetVersion": "10.0.100"
|
|
9
13
|
},
|
|
10
14
|
"testCases": [
|
|
11
15
|
{
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"projectRoot": "/home/ci/myapp",
|
|
4
|
+
"coveredSourceFiles": [
|
|
5
|
+
"src/test/java/com/acme/auth/LoginTest.java",
|
|
6
|
+
"src/test/java/com/acme/cart/CheckoutTest.java"
|
|
7
|
+
],
|
|
4
8
|
"startedAtMs": 1706745600000,
|
|
5
9
|
"finishedAtMs": 1706745618000,
|
|
6
10
|
"meta": {
|