executable-stories-formatters 1.19.0 → 1.19.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 +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -13
- package/dist/index.d.ts +4 -13
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -273,20 +273,11 @@ interface FormatterOptions {
|
|
|
273
273
|
sortTestCases?: SortTestCasesMode;
|
|
274
274
|
/** Output routing configuration */
|
|
275
275
|
output?: OutputConfig;
|
|
276
|
-
/**
|
|
277
|
-
* Link templates that apply to every format that can render a link.
|
|
278
|
-
*
|
|
279
|
-
* One place to say "this is where our tickets live", rather than repeating
|
|
280
|
-
* it per format: markdown, confluence and astro-markdown take these as their
|
|
281
|
-
* default, and the StoryReport (HTML report, Astro pages, story-report-json)
|
|
282
|
-
* resolves ticket URLs from `ticketUrlTemplate`. A per-format option of the
|
|
283
|
-
* same name still wins where one is set.
|
|
284
|
-
*/
|
|
285
|
-
/** Base URL for source permalinks. E.g., "https://github.com/user/repo/blob/main" */
|
|
276
|
+
/** Base URL for source permalinks, e.g. "https://github.com/org/repo/blob/main". */
|
|
286
277
|
permalinkBaseUrl?: string;
|
|
287
|
-
/** URL template for ticket links
|
|
278
|
+
/** URL template for ticket links; `{ticket}` is the id, e.g. "https://jira.example.com/browse/{ticket}". */
|
|
288
279
|
ticketUrlTemplate?: string;
|
|
289
|
-
/** URL template for trace links
|
|
280
|
+
/** URL template for trace links; `{traceId}` is the trace id. */
|
|
290
281
|
traceUrlTemplate?: string;
|
|
291
282
|
/** Cucumber JSON specific options */
|
|
292
283
|
cucumberJson?: {
|
|
@@ -1200,7 +1191,7 @@ interface ExecutableStoriesConfig {
|
|
|
1200
1191
|
/**
|
|
1201
1192
|
* Default values for CLI flags, keyed by flag name without the dashes
|
|
1202
1193
|
* (`"html-title": "Checkout"`, `"html-architecture": true`). Anything typed
|
|
1203
|
-
* on the command line wins. Plain data, so a `.json` config carries it too
|
|
1194
|
+
* on the command line wins. Plain data, so a `.json` config carries it too,
|
|
1204
1195
|
* which is the only way the non-JS adapters' users can set these at all.
|
|
1205
1196
|
*/
|
|
1206
1197
|
defaults?: Record<string, string | number | boolean | (string | number)[]>;
|
package/dist/index.d.ts
CHANGED
|
@@ -273,20 +273,11 @@ interface FormatterOptions {
|
|
|
273
273
|
sortTestCases?: SortTestCasesMode;
|
|
274
274
|
/** Output routing configuration */
|
|
275
275
|
output?: OutputConfig;
|
|
276
|
-
/**
|
|
277
|
-
* Link templates that apply to every format that can render a link.
|
|
278
|
-
*
|
|
279
|
-
* One place to say "this is where our tickets live", rather than repeating
|
|
280
|
-
* it per format: markdown, confluence and astro-markdown take these as their
|
|
281
|
-
* default, and the StoryReport (HTML report, Astro pages, story-report-json)
|
|
282
|
-
* resolves ticket URLs from `ticketUrlTemplate`. A per-format option of the
|
|
283
|
-
* same name still wins where one is set.
|
|
284
|
-
*/
|
|
285
|
-
/** Base URL for source permalinks. E.g., "https://github.com/user/repo/blob/main" */
|
|
276
|
+
/** Base URL for source permalinks, e.g. "https://github.com/org/repo/blob/main". */
|
|
286
277
|
permalinkBaseUrl?: string;
|
|
287
|
-
/** URL template for ticket links
|
|
278
|
+
/** URL template for ticket links; `{ticket}` is the id, e.g. "https://jira.example.com/browse/{ticket}". */
|
|
288
279
|
ticketUrlTemplate?: string;
|
|
289
|
-
/** URL template for trace links
|
|
280
|
+
/** URL template for trace links; `{traceId}` is the trace id. */
|
|
290
281
|
traceUrlTemplate?: string;
|
|
291
282
|
/** Cucumber JSON specific options */
|
|
292
283
|
cucumberJson?: {
|
|
@@ -1200,7 +1191,7 @@ interface ExecutableStoriesConfig {
|
|
|
1200
1191
|
/**
|
|
1201
1192
|
* Default values for CLI flags, keyed by flag name without the dashes
|
|
1202
1193
|
* (`"html-title": "Checkout"`, `"html-architecture": true`). Anything typed
|
|
1203
|
-
* on the command line wins. Plain data, so a `.json` config carries it too
|
|
1194
|
+
* on the command line wins. Plain data, so a `.json` config carries it too,
|
|
1204
1195
|
* which is the only way the non-JS adapters' users can set these at all.
|
|
1205
1196
|
*/
|
|
1206
1197
|
defaults?: Record<string, string | number | boolean | (string | number)[]>;
|