()
| 32 | let prevPassword: string | undefined; |
| 33 | |
| 34 | function tmpPaths(): { lockPath: string; homeDir: string } { |
| 35 | const dir = mkdtempSync(join(tmpdir(), 'kimi-host-exposure-')); |
| 36 | const home = mkdtempSync(join(tmpdir(), 'kimi-host-exposure-home-')); |
| 37 | createdDirs.push(dir, home); |
| 38 | return { lockPath: join(dir, 'lock'), homeDir: home }; |
| 39 | } |
| 40 | |
| 41 | function capturingLogger(): { logger: Logger; lines: string[] } { |
| 42 | const lines: string[] = []; |
no test coverage detected