executable-stories-formatters 0.9.0 → 0.11.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/README.md +35 -0
- package/dist/adapters.d.cts +1 -1
- package/dist/adapters.d.ts +1 -1
- package/dist/cli.js +1437 -126
- package/dist/cli.js.map +1 -1
- package/dist/{index-it3Pkmqv.d.cts → index-DF16Xl5i.d.cts} +9 -0
- package/dist/{index-it3Pkmqv.d.ts → index-DF16Xl5i.d.ts} +9 -0
- package/dist/index.cjs +613 -55
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +240 -7
- package/dist/index.d.ts +240 -7
- package/dist/index.js +602 -54
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
- 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/raw-run.schema.json +19 -0
- package/schemas/scenario-index-v1.json +88 -0
- package/schemas/story-report-v1.json +22 -0
|
@@ -113,6 +113,13 @@ type DocEntry = {
|
|
|
113
113
|
alt?: string;
|
|
114
114
|
phase: DocPhase;
|
|
115
115
|
children?: DocEntry[];
|
|
116
|
+
} | {
|
|
117
|
+
kind: "video";
|
|
118
|
+
path: string;
|
|
119
|
+
caption?: string;
|
|
120
|
+
poster?: string;
|
|
121
|
+
phase: DocPhase;
|
|
122
|
+
children?: DocEntry[];
|
|
116
123
|
} | {
|
|
117
124
|
kind: "custom";
|
|
118
125
|
type: string;
|
|
@@ -159,6 +166,8 @@ interface StoryMeta {
|
|
|
159
166
|
tags?: string[];
|
|
160
167
|
/** Ticket/issue references (normalized to array) */
|
|
161
168
|
tickets?: NormalizedTicket[];
|
|
169
|
+
/** Product-code paths/globs this scenario exercises (project-root-relative). */
|
|
170
|
+
covers?: string[];
|
|
162
171
|
/** User-defined metadata */
|
|
163
172
|
meta?: Record<string, unknown>;
|
|
164
173
|
/** Parent describe/suite names for hierarchical grouping */
|
|
@@ -113,6 +113,13 @@ type DocEntry = {
|
|
|
113
113
|
alt?: string;
|
|
114
114
|
phase: DocPhase;
|
|
115
115
|
children?: DocEntry[];
|
|
116
|
+
} | {
|
|
117
|
+
kind: "video";
|
|
118
|
+
path: string;
|
|
119
|
+
caption?: string;
|
|
120
|
+
poster?: string;
|
|
121
|
+
phase: DocPhase;
|
|
122
|
+
children?: DocEntry[];
|
|
116
123
|
} | {
|
|
117
124
|
kind: "custom";
|
|
118
125
|
type: string;
|
|
@@ -159,6 +166,8 @@ interface StoryMeta {
|
|
|
159
166
|
tags?: string[];
|
|
160
167
|
/** Ticket/issue references (normalized to array) */
|
|
161
168
|
tickets?: NormalizedTicket[];
|
|
169
|
+
/** Product-code paths/globs this scenario exercises (project-root-relative). */
|
|
170
|
+
covers?: string[];
|
|
162
171
|
/** User-defined metadata */
|
|
163
172
|
meta?: Record<string, unknown>;
|
|
164
173
|
/** Parent describe/suite names for hierarchical grouping */
|