Make test results copyable

Add Markdown formatting utilities for test results, wire up clipboard copy in IntegrationTestRunner, and export new formatters. Introduce formatters.ts, extend index.ts exports, and implement copy all / copy failed / per-test copy functionality with updated UI.
This commit is contained in:
gpt-engineer-app[bot]
2025-11-10 16:48:51 +00:00
parent ad31be1622
commit 3cb0f66064
3 changed files with 135 additions and 6 deletions

View File

@@ -6,5 +6,6 @@
export { IntegrationTestRunner } from './testRunner';
export { allTestSuites } from './suites';
export { formatResultsAsMarkdown, formatSingleTestAsMarkdown } from './formatters';
export type { TestResult, Test, TestSuite } from './testRunner';