(lineCount = 40)
| 7 | import { applyMarkdown, repairMalformedPipeTables } from '../utils/markdown.js' |
| 8 | |
| 9 | function makeLargeCodeFence(lineCount = 40): string { |
| 10 | const lines = Array.from({ length: lineCount }, (_, index) => { |
| 11 | return `export const value_${index.toString().padStart(2, '0')} = '${`${index}`.padEnd(72, 'x')}';` |
| 12 | }) |
| 13 | |
| 14 | return ['assistant summary', '', '```ts', ...lines, '```'].join('\n') |
| 15 | } |
| 16 | |
| 17 | function makeStructuredDiagram(): string { |
| 18 | return [ |
no test coverage detected