(content: string)
| 812 | |
| 813 | describe('readConfigRedacted honors include toggles', () => { |
| 814 | async function writeConfig(content: string): Promise<void> { |
| 815 | const { writeFile } = await import('node:fs/promises'); |
| 816 | await writeFile('/tmp/__codesign-test-config.toml', content, 'utf8'); |
| 817 | } |
| 818 | |
| 819 | it('scrubs baseUrl / rootPath when includePaths=false and includeUrls=false', async () => { |
| 820 | await writeConfig( |
no test coverage detected