(content: string)
| 561 | |
| 562 | describe('diagnostics bundle main.log scrubbing', () => { |
| 563 | async function writeTestLog(content: string): Promise<void> { |
| 564 | const { writeFile } = await import('node:fs/promises'); |
| 565 | await writeFile('/tmp/__codesign-test-main.log', content, 'utf8'); |
| 566 | } |
| 567 | |
| 568 | async function recordAndReport(overrides: Record<string, unknown>): Promise<{ mainLog: string }> { |
| 569 | const db = initInMemoryDb(); |
no test coverage detected