executable-stories-formatters 0.9.0 → 0.10.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/adapters.d.cts +1 -1
- package/dist/adapters.d.ts +1 -1
- package/dist/cli.js +418 -96
- package/dist/cli.js.map +1 -1
- package/dist/{index-it3Pkmqv.d.cts → index-CbWFyoTx.d.cts} +2 -0
- package/dist/{index-it3Pkmqv.d.ts → index-CbWFyoTx.d.ts} +2 -0
- package/dist/index.cjs +485 -53
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +201 -4
- package/dist/index.d.ts +201 -4
- package/dist/index.js +475 -52
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/schemas/behavior-manifest-v1.json +65 -0
- package/schemas/examples/dotnet.json +84 -20
- package/schemas/examples/go.json +77 -20
- package/schemas/examples/junit5.json +84 -20
- package/schemas/examples/pytest.json +92 -20
- package/schemas/examples/rust.json +84 -20
- package/schemas/scenario-index-v1.json +88 -0
- package/schemas/story-report-v1.json +5 -0
|
@@ -159,6 +159,8 @@ interface StoryMeta {
|
|
|
159
159
|
tags?: string[];
|
|
160
160
|
/** Ticket/issue references (normalized to array) */
|
|
161
161
|
tickets?: NormalizedTicket[];
|
|
162
|
+
/** Product-code paths/globs this scenario exercises (project-root-relative). */
|
|
163
|
+
covers?: string[];
|
|
162
164
|
/** User-defined metadata */
|
|
163
165
|
meta?: Record<string, unknown>;
|
|
164
166
|
/** Parent describe/suite names for hierarchical grouping */
|
|
@@ -159,6 +159,8 @@ interface StoryMeta {
|
|
|
159
159
|
tags?: string[];
|
|
160
160
|
/** Ticket/issue references (normalized to array) */
|
|
161
161
|
tickets?: NormalizedTicket[];
|
|
162
|
+
/** Product-code paths/globs this scenario exercises (project-root-relative). */
|
|
163
|
+
covers?: string[];
|
|
162
164
|
/** User-defined metadata */
|
|
163
165
|
meta?: Record<string, unknown>;
|
|
164
166
|
/** Parent describe/suite names for hierarchical grouping */
|