executable-stories-formatters 0.7.15 → 0.9.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 +1121 -18
- package/dist/cli.js.map +1 -1
- package/dist/{index-BiAYcEiz.d.cts → index-it3Pkmqv.d.cts} +159 -4
- package/dist/{index-BiAYcEiz.d.ts → index-it3Pkmqv.d.ts} +159 -4
- package/dist/index.cjs +937 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +216 -126
- package/dist/index.d.ts +216 -126
- package/dist/index.js +929 -14
- package/dist/index.js.map +1 -1
- package/package.json +3 -5
- package/schemas/raw-run.schema.json +49 -2
- package/bin/intent.js +0 -3
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
type CIProvider = "github" | "gitlab" | "circleci" | "jenkins" | "azure" | "buildkite" | "travis" | "unknown";
|
|
11
|
-
interface CIInfo {
|
|
11
|
+
interface CIInfo$1 {
|
|
12
12
|
provider: CIProvider;
|
|
13
13
|
displayName: string;
|
|
14
14
|
url?: string;
|
|
@@ -18,9 +18,9 @@ interface CIInfo {
|
|
|
18
18
|
prNumber?: string;
|
|
19
19
|
}
|
|
20
20
|
/** Convert RawCIInfo (legacy transport) to canonical CIInfo. */
|
|
21
|
-
declare function toCIInfo(raw?: RawCIInfo): CIInfo | undefined;
|
|
21
|
+
declare function toCIInfo(raw?: RawCIInfo): CIInfo$1 | undefined;
|
|
22
22
|
/** Convert canonical CIInfo back to RawCIInfo (for serialization). */
|
|
23
|
-
declare function toRawCIInfo(ci?: CIInfo): RawCIInfo | undefined;
|
|
23
|
+
declare function toRawCIInfo(ci?: CIInfo$1): RawCIInfo | undefined;
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
26
|
* OTel span types for trace waterfall rendering.
|
|
@@ -234,6 +234,12 @@ interface RawTestCase {
|
|
|
234
234
|
attachments?: RawAttachment[];
|
|
235
235
|
/** Framework-specific metadata (kept for debugging) */
|
|
236
236
|
meta?: Record<string, unknown>;
|
|
237
|
+
/**
|
|
238
|
+
* Evidence ingested from external tools (mutation/coverage/failing-first).
|
|
239
|
+
* Not produced by framework adapters — injected at ingestion time and passed
|
|
240
|
+
* through to the canonical {@link TestCaseResult.evidence}.
|
|
241
|
+
*/
|
|
242
|
+
evidence?: TestCaseEvidence;
|
|
237
243
|
/** Retry attempt number (0-based) */
|
|
238
244
|
retry?: number;
|
|
239
245
|
/** Total retry count configured */
|
|
@@ -273,6 +279,155 @@ interface RawRun {
|
|
|
273
279
|
ci?: RawCIInfo;
|
|
274
280
|
}
|
|
275
281
|
|
|
282
|
+
/** Canonical test status (Cucumber-compatible) */
|
|
283
|
+
type TestStatus = "passed" | "failed" | "skipped" | "pending";
|
|
284
|
+
/** Step result with status and timing */
|
|
285
|
+
interface StepResult {
|
|
286
|
+
/** Step index (0-based) */
|
|
287
|
+
index: number;
|
|
288
|
+
/** Stable step ID when available */
|
|
289
|
+
stepId?: string;
|
|
290
|
+
/** Step status */
|
|
291
|
+
status: TestStatus;
|
|
292
|
+
/** Duration in milliseconds (default 0) */
|
|
293
|
+
durationMs: number;
|
|
294
|
+
/** Error message if step failed */
|
|
295
|
+
errorMessage?: string;
|
|
296
|
+
}
|
|
297
|
+
/** Resolved attachment (always has body) */
|
|
298
|
+
interface Attachment {
|
|
299
|
+
/** Attachment name */
|
|
300
|
+
name: string;
|
|
301
|
+
/** MIME type */
|
|
302
|
+
mediaType: string;
|
|
303
|
+
/** Content (base64-encoded or URL) */
|
|
304
|
+
body: string;
|
|
305
|
+
/** Content encoding */
|
|
306
|
+
contentEncoding: "BASE64" | "IDENTITY";
|
|
307
|
+
}
|
|
308
|
+
/** Single test attempt for retry tracking */
|
|
309
|
+
interface TestCaseAttempt {
|
|
310
|
+
/** Attempt number (0-based) */
|
|
311
|
+
attempt: number;
|
|
312
|
+
/** Status of this attempt */
|
|
313
|
+
status: TestStatus;
|
|
314
|
+
/** Duration of this attempt in milliseconds */
|
|
315
|
+
durationMs: number;
|
|
316
|
+
/** Error message if this attempt failed */
|
|
317
|
+
errorMessage?: string;
|
|
318
|
+
/** Error stack trace if this attempt failed */
|
|
319
|
+
errorStack?: string;
|
|
320
|
+
}
|
|
321
|
+
/** Canonical test case result */
|
|
322
|
+
interface TestCaseResult {
|
|
323
|
+
/** Unique deterministic ID */
|
|
324
|
+
id: string;
|
|
325
|
+
/** Story metadata (required) */
|
|
326
|
+
story: StoryMeta;
|
|
327
|
+
/** Source file path (required) */
|
|
328
|
+
sourceFile: string;
|
|
329
|
+
/** Source line number (required, default 1) */
|
|
330
|
+
sourceLine: number;
|
|
331
|
+
/** Test status (required) */
|
|
332
|
+
status: TestStatus;
|
|
333
|
+
/** Original adapter/framework status (preserved for diagnostics). */
|
|
334
|
+
rawStatus?: RawStatus;
|
|
335
|
+
/** Duration in milliseconds (required, default 0) */
|
|
336
|
+
durationMs: number;
|
|
337
|
+
/** Error message if failed */
|
|
338
|
+
errorMessage?: string;
|
|
339
|
+
/** Error stack trace if failed */
|
|
340
|
+
errorStack?: string;
|
|
341
|
+
/** Attachments (required, empty array if none) */
|
|
342
|
+
attachments: Attachment[];
|
|
343
|
+
/** Step results (required, always populated via fallback rules) */
|
|
344
|
+
stepResults: StepResult[];
|
|
345
|
+
/** Full title path from suite/describe blocks (required, empty array if none) */
|
|
346
|
+
titlePath: string[];
|
|
347
|
+
/** Playwright project name (optional) */
|
|
348
|
+
projectName?: string;
|
|
349
|
+
/** Retry attempt number (required, default 0) */
|
|
350
|
+
retry: number;
|
|
351
|
+
/** Total retries configured (required, default 0) */
|
|
352
|
+
retries: number;
|
|
353
|
+
/** Normalized tags from story (required, empty array if none) */
|
|
354
|
+
tags: string[];
|
|
355
|
+
/** All retry attempts (optional, includes details per attempt) */
|
|
356
|
+
attempts?: TestCaseAttempt[];
|
|
357
|
+
/**
|
|
358
|
+
* Ingested evidence (mutation/coverage/failing-first) used by the review
|
|
359
|
+
* formatter to grade proof strength. Populated at the ACL/ingestion layer,
|
|
360
|
+
* never by adapters. Optional and additive.
|
|
361
|
+
*/
|
|
362
|
+
evidence?: TestCaseEvidence;
|
|
363
|
+
}
|
|
364
|
+
/**
|
|
365
|
+
* Evidence ingested from external tools to harden the "the test passes" claim.
|
|
366
|
+
*
|
|
367
|
+
* Populated at the ACL/ingestion layer from the host project's own tooling
|
|
368
|
+
* (Stryker/PITest mutation runs, coverage reports, base-ref re-verification).
|
|
369
|
+
* The packages never RUN these tools — same ingestion shape as {@link StoryMeta.otelSpans}.
|
|
370
|
+
* Consumed by the review formatter to grade how credible a claim's proof is.
|
|
371
|
+
*/
|
|
372
|
+
interface TestCaseEvidence {
|
|
373
|
+
/** Mutation score (0-100) attributed to this test/file, from Stryker/PITest/etc. */
|
|
374
|
+
mutationScorePct?: number;
|
|
375
|
+
/** Mutants killed by this test's covered code (when the tool reports it). */
|
|
376
|
+
mutantsKilled?: number;
|
|
377
|
+
/** Total mutants in this test's covered code (when the tool reports it). */
|
|
378
|
+
mutantsTotal?: number;
|
|
379
|
+
/**
|
|
380
|
+
* True when the test was verified red on the base ref and green on head
|
|
381
|
+
* (the failing-first regression lock for bugfixes).
|
|
382
|
+
*/
|
|
383
|
+
failingFirstVerified?: boolean;
|
|
384
|
+
/** Coverage of the changed lines this test exercises (0-100), when computable. */
|
|
385
|
+
changedLineCoveragePct?: number;
|
|
386
|
+
}
|
|
387
|
+
/** CI environment info */
|
|
388
|
+
interface CIInfo {
|
|
389
|
+
name: string;
|
|
390
|
+
url?: string;
|
|
391
|
+
buildNumber?: string;
|
|
392
|
+
branch?: string;
|
|
393
|
+
commitSha?: string;
|
|
394
|
+
prNumber?: string;
|
|
395
|
+
}
|
|
396
|
+
/** Coverage summary for the test run */
|
|
397
|
+
interface CoverageSummary {
|
|
398
|
+
/** Line coverage percentage (0-100) */
|
|
399
|
+
linesPct?: number;
|
|
400
|
+
/** Branch coverage percentage (0-100) */
|
|
401
|
+
branchesPct?: number;
|
|
402
|
+
/** Function coverage percentage (0-100) */
|
|
403
|
+
functionsPct?: number;
|
|
404
|
+
/** Statement coverage percentage (0-100) */
|
|
405
|
+
statementsPct?: number;
|
|
406
|
+
}
|
|
407
|
+
/** Canonical test run result */
|
|
408
|
+
interface TestRunResult {
|
|
409
|
+
/** All test case results */
|
|
410
|
+
testCases: TestCaseResult[];
|
|
411
|
+
/** Run start time (epoch ms, required) */
|
|
412
|
+
startedAtMs: number;
|
|
413
|
+
/** Run finish time (epoch ms, required) */
|
|
414
|
+
finishedAtMs: number;
|
|
415
|
+
/** Total duration in milliseconds (required) */
|
|
416
|
+
durationMs: number;
|
|
417
|
+
/** Project root directory (required) */
|
|
418
|
+
projectRoot: string;
|
|
419
|
+
/** Unique run ID (required, generated) */
|
|
420
|
+
runId: string;
|
|
421
|
+
/** Package version */
|
|
422
|
+
packageVersion?: string;
|
|
423
|
+
/** Git commit SHA */
|
|
424
|
+
gitSha?: string;
|
|
425
|
+
/** CI environment info */
|
|
426
|
+
ci?: CIInfo;
|
|
427
|
+
/** Coverage summary for the run */
|
|
428
|
+
coverage?: CoverageSummary;
|
|
429
|
+
}
|
|
430
|
+
|
|
276
431
|
/**
|
|
277
432
|
* Jest Adapter - Layer 1.
|
|
278
433
|
*
|
|
@@ -452,4 +607,4 @@ interface PlaywrightAdapterOptions {
|
|
|
452
607
|
*/
|
|
453
608
|
declare function adaptPlaywrightRun(testResults: Array<[PlaywrightTestCase, PlaywrightTestResult]>, options?: PlaywrightAdapterOptions): RawRun;
|
|
454
609
|
|
|
455
|
-
export { type
|
|
610
|
+
export { type Attachment as A, STORY_META_KEY as B, type CIInfo$1 as C, type DocEntry as D, type StepKeyword as E, type StepMode as F, type StoryFileReport as G, type StoryMeta as H, type TestCaseAttempt as I, type JestAdapterOptions as J, type TestCaseEvidence as K, type VitestSerializedError as L, type VitestState as M, type NormalizedTicket as N, type OtelSpan as O, type PlaywrightAdapterOptions as P, type VitestTestCase as Q, type RawStatus as R, type StoryStep as S, type TestRunResult as T, type VitestTestModule as U, type VitestAdapterOptions as V, type VitestTestResult as W, toCIInfo as X, toRawCIInfo as Y, type TestCaseResult as a, type TestStatus as b, type DocPhase as c, type StepResult as d, type CIProvider as e, type RawAttachment as f, type RawRun as g, type RawCIInfo as h, adaptJestRun as i, adaptPlaywrightRun as j, adaptVitestRun as k, type CIInfo as l, type CoverageSummary as m, type JestAggregatedResult as n, type JestFileResult as o, type JestTestResult as p, type OtelAttributeValue as q, type PlaywrightAnnotation as r, type PlaywrightAttachment as s, type PlaywrightError as t, type PlaywrightLocation as u, type PlaywrightStatus as v, type PlaywrightTestCase as w, type PlaywrightTestResult as x, type RawStepEvent as y, type RawTestCase as z };
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
type CIProvider = "github" | "gitlab" | "circleci" | "jenkins" | "azure" | "buildkite" | "travis" | "unknown";
|
|
11
|
-
interface CIInfo {
|
|
11
|
+
interface CIInfo$1 {
|
|
12
12
|
provider: CIProvider;
|
|
13
13
|
displayName: string;
|
|
14
14
|
url?: string;
|
|
@@ -18,9 +18,9 @@ interface CIInfo {
|
|
|
18
18
|
prNumber?: string;
|
|
19
19
|
}
|
|
20
20
|
/** Convert RawCIInfo (legacy transport) to canonical CIInfo. */
|
|
21
|
-
declare function toCIInfo(raw?: RawCIInfo): CIInfo | undefined;
|
|
21
|
+
declare function toCIInfo(raw?: RawCIInfo): CIInfo$1 | undefined;
|
|
22
22
|
/** Convert canonical CIInfo back to RawCIInfo (for serialization). */
|
|
23
|
-
declare function toRawCIInfo(ci?: CIInfo): RawCIInfo | undefined;
|
|
23
|
+
declare function toRawCIInfo(ci?: CIInfo$1): RawCIInfo | undefined;
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
26
|
* OTel span types for trace waterfall rendering.
|
|
@@ -234,6 +234,12 @@ interface RawTestCase {
|
|
|
234
234
|
attachments?: RawAttachment[];
|
|
235
235
|
/** Framework-specific metadata (kept for debugging) */
|
|
236
236
|
meta?: Record<string, unknown>;
|
|
237
|
+
/**
|
|
238
|
+
* Evidence ingested from external tools (mutation/coverage/failing-first).
|
|
239
|
+
* Not produced by framework adapters — injected at ingestion time and passed
|
|
240
|
+
* through to the canonical {@link TestCaseResult.evidence}.
|
|
241
|
+
*/
|
|
242
|
+
evidence?: TestCaseEvidence;
|
|
237
243
|
/** Retry attempt number (0-based) */
|
|
238
244
|
retry?: number;
|
|
239
245
|
/** Total retry count configured */
|
|
@@ -273,6 +279,155 @@ interface RawRun {
|
|
|
273
279
|
ci?: RawCIInfo;
|
|
274
280
|
}
|
|
275
281
|
|
|
282
|
+
/** Canonical test status (Cucumber-compatible) */
|
|
283
|
+
type TestStatus = "passed" | "failed" | "skipped" | "pending";
|
|
284
|
+
/** Step result with status and timing */
|
|
285
|
+
interface StepResult {
|
|
286
|
+
/** Step index (0-based) */
|
|
287
|
+
index: number;
|
|
288
|
+
/** Stable step ID when available */
|
|
289
|
+
stepId?: string;
|
|
290
|
+
/** Step status */
|
|
291
|
+
status: TestStatus;
|
|
292
|
+
/** Duration in milliseconds (default 0) */
|
|
293
|
+
durationMs: number;
|
|
294
|
+
/** Error message if step failed */
|
|
295
|
+
errorMessage?: string;
|
|
296
|
+
}
|
|
297
|
+
/** Resolved attachment (always has body) */
|
|
298
|
+
interface Attachment {
|
|
299
|
+
/** Attachment name */
|
|
300
|
+
name: string;
|
|
301
|
+
/** MIME type */
|
|
302
|
+
mediaType: string;
|
|
303
|
+
/** Content (base64-encoded or URL) */
|
|
304
|
+
body: string;
|
|
305
|
+
/** Content encoding */
|
|
306
|
+
contentEncoding: "BASE64" | "IDENTITY";
|
|
307
|
+
}
|
|
308
|
+
/** Single test attempt for retry tracking */
|
|
309
|
+
interface TestCaseAttempt {
|
|
310
|
+
/** Attempt number (0-based) */
|
|
311
|
+
attempt: number;
|
|
312
|
+
/** Status of this attempt */
|
|
313
|
+
status: TestStatus;
|
|
314
|
+
/** Duration of this attempt in milliseconds */
|
|
315
|
+
durationMs: number;
|
|
316
|
+
/** Error message if this attempt failed */
|
|
317
|
+
errorMessage?: string;
|
|
318
|
+
/** Error stack trace if this attempt failed */
|
|
319
|
+
errorStack?: string;
|
|
320
|
+
}
|
|
321
|
+
/** Canonical test case result */
|
|
322
|
+
interface TestCaseResult {
|
|
323
|
+
/** Unique deterministic ID */
|
|
324
|
+
id: string;
|
|
325
|
+
/** Story metadata (required) */
|
|
326
|
+
story: StoryMeta;
|
|
327
|
+
/** Source file path (required) */
|
|
328
|
+
sourceFile: string;
|
|
329
|
+
/** Source line number (required, default 1) */
|
|
330
|
+
sourceLine: number;
|
|
331
|
+
/** Test status (required) */
|
|
332
|
+
status: TestStatus;
|
|
333
|
+
/** Original adapter/framework status (preserved for diagnostics). */
|
|
334
|
+
rawStatus?: RawStatus;
|
|
335
|
+
/** Duration in milliseconds (required, default 0) */
|
|
336
|
+
durationMs: number;
|
|
337
|
+
/** Error message if failed */
|
|
338
|
+
errorMessage?: string;
|
|
339
|
+
/** Error stack trace if failed */
|
|
340
|
+
errorStack?: string;
|
|
341
|
+
/** Attachments (required, empty array if none) */
|
|
342
|
+
attachments: Attachment[];
|
|
343
|
+
/** Step results (required, always populated via fallback rules) */
|
|
344
|
+
stepResults: StepResult[];
|
|
345
|
+
/** Full title path from suite/describe blocks (required, empty array if none) */
|
|
346
|
+
titlePath: string[];
|
|
347
|
+
/** Playwright project name (optional) */
|
|
348
|
+
projectName?: string;
|
|
349
|
+
/** Retry attempt number (required, default 0) */
|
|
350
|
+
retry: number;
|
|
351
|
+
/** Total retries configured (required, default 0) */
|
|
352
|
+
retries: number;
|
|
353
|
+
/** Normalized tags from story (required, empty array if none) */
|
|
354
|
+
tags: string[];
|
|
355
|
+
/** All retry attempts (optional, includes details per attempt) */
|
|
356
|
+
attempts?: TestCaseAttempt[];
|
|
357
|
+
/**
|
|
358
|
+
* Ingested evidence (mutation/coverage/failing-first) used by the review
|
|
359
|
+
* formatter to grade proof strength. Populated at the ACL/ingestion layer,
|
|
360
|
+
* never by adapters. Optional and additive.
|
|
361
|
+
*/
|
|
362
|
+
evidence?: TestCaseEvidence;
|
|
363
|
+
}
|
|
364
|
+
/**
|
|
365
|
+
* Evidence ingested from external tools to harden the "the test passes" claim.
|
|
366
|
+
*
|
|
367
|
+
* Populated at the ACL/ingestion layer from the host project's own tooling
|
|
368
|
+
* (Stryker/PITest mutation runs, coverage reports, base-ref re-verification).
|
|
369
|
+
* The packages never RUN these tools — same ingestion shape as {@link StoryMeta.otelSpans}.
|
|
370
|
+
* Consumed by the review formatter to grade how credible a claim's proof is.
|
|
371
|
+
*/
|
|
372
|
+
interface TestCaseEvidence {
|
|
373
|
+
/** Mutation score (0-100) attributed to this test/file, from Stryker/PITest/etc. */
|
|
374
|
+
mutationScorePct?: number;
|
|
375
|
+
/** Mutants killed by this test's covered code (when the tool reports it). */
|
|
376
|
+
mutantsKilled?: number;
|
|
377
|
+
/** Total mutants in this test's covered code (when the tool reports it). */
|
|
378
|
+
mutantsTotal?: number;
|
|
379
|
+
/**
|
|
380
|
+
* True when the test was verified red on the base ref and green on head
|
|
381
|
+
* (the failing-first regression lock for bugfixes).
|
|
382
|
+
*/
|
|
383
|
+
failingFirstVerified?: boolean;
|
|
384
|
+
/** Coverage of the changed lines this test exercises (0-100), when computable. */
|
|
385
|
+
changedLineCoveragePct?: number;
|
|
386
|
+
}
|
|
387
|
+
/** CI environment info */
|
|
388
|
+
interface CIInfo {
|
|
389
|
+
name: string;
|
|
390
|
+
url?: string;
|
|
391
|
+
buildNumber?: string;
|
|
392
|
+
branch?: string;
|
|
393
|
+
commitSha?: string;
|
|
394
|
+
prNumber?: string;
|
|
395
|
+
}
|
|
396
|
+
/** Coverage summary for the test run */
|
|
397
|
+
interface CoverageSummary {
|
|
398
|
+
/** Line coverage percentage (0-100) */
|
|
399
|
+
linesPct?: number;
|
|
400
|
+
/** Branch coverage percentage (0-100) */
|
|
401
|
+
branchesPct?: number;
|
|
402
|
+
/** Function coverage percentage (0-100) */
|
|
403
|
+
functionsPct?: number;
|
|
404
|
+
/** Statement coverage percentage (0-100) */
|
|
405
|
+
statementsPct?: number;
|
|
406
|
+
}
|
|
407
|
+
/** Canonical test run result */
|
|
408
|
+
interface TestRunResult {
|
|
409
|
+
/** All test case results */
|
|
410
|
+
testCases: TestCaseResult[];
|
|
411
|
+
/** Run start time (epoch ms, required) */
|
|
412
|
+
startedAtMs: number;
|
|
413
|
+
/** Run finish time (epoch ms, required) */
|
|
414
|
+
finishedAtMs: number;
|
|
415
|
+
/** Total duration in milliseconds (required) */
|
|
416
|
+
durationMs: number;
|
|
417
|
+
/** Project root directory (required) */
|
|
418
|
+
projectRoot: string;
|
|
419
|
+
/** Unique run ID (required, generated) */
|
|
420
|
+
runId: string;
|
|
421
|
+
/** Package version */
|
|
422
|
+
packageVersion?: string;
|
|
423
|
+
/** Git commit SHA */
|
|
424
|
+
gitSha?: string;
|
|
425
|
+
/** CI environment info */
|
|
426
|
+
ci?: CIInfo;
|
|
427
|
+
/** Coverage summary for the run */
|
|
428
|
+
coverage?: CoverageSummary;
|
|
429
|
+
}
|
|
430
|
+
|
|
276
431
|
/**
|
|
277
432
|
* Jest Adapter - Layer 1.
|
|
278
433
|
*
|
|
@@ -452,4 +607,4 @@ interface PlaywrightAdapterOptions {
|
|
|
452
607
|
*/
|
|
453
608
|
declare function adaptPlaywrightRun(testResults: Array<[PlaywrightTestCase, PlaywrightTestResult]>, options?: PlaywrightAdapterOptions): RawRun;
|
|
454
609
|
|
|
455
|
-
export { type
|
|
610
|
+
export { type Attachment as A, STORY_META_KEY as B, type CIInfo$1 as C, type DocEntry as D, type StepKeyword as E, type StepMode as F, type StoryFileReport as G, type StoryMeta as H, type TestCaseAttempt as I, type JestAdapterOptions as J, type TestCaseEvidence as K, type VitestSerializedError as L, type VitestState as M, type NormalizedTicket as N, type OtelSpan as O, type PlaywrightAdapterOptions as P, type VitestTestCase as Q, type RawStatus as R, type StoryStep as S, type TestRunResult as T, type VitestTestModule as U, type VitestAdapterOptions as V, type VitestTestResult as W, toCIInfo as X, toRawCIInfo as Y, type TestCaseResult as a, type TestStatus as b, type DocPhase as c, type StepResult as d, type CIProvider as e, type RawAttachment as f, type RawRun as g, type RawCIInfo as h, adaptJestRun as i, adaptPlaywrightRun as j, adaptVitestRun as k, type CIInfo as l, type CoverageSummary as m, type JestAggregatedResult as n, type JestFileResult as o, type JestTestResult as p, type OtelAttributeValue as q, type PlaywrightAnnotation as r, type PlaywrightAttachment as s, type PlaywrightError as t, type PlaywrightLocation as u, type PlaywrightStatus as v, type PlaywrightTestCase as w, type PlaywrightTestResult as x, type RawStepEvent as y, type RawTestCase as z };
|