(lineCount = 64)
| 5 | } from './renderPlan.js' |
| 6 | |
| 7 | function makeLargeCode(lineCount = 64): string { |
| 8 | return Array.from( |
| 9 | { length: lineCount }, |
| 10 | (_, line) => |
| 11 | `export const value_${line.toString(36).padStart(2, '0')} = '${`${line}`.padEnd(48, 'x')}';`, |
| 12 | ).join('\n') |
| 13 | } |
| 14 | |
| 15 | describe('HighlightedCode render plan cache', () => { |
| 16 | beforeEach(() => { |
no test coverage detected