()
| 356 | const originalEditor = process.env['EDITOR']; |
| 357 | |
| 358 | async function makeTempHome(): Promise<string> { |
| 359 | const dir = await mkdtemp(join(tmpdir(), 'kimi-code-tui-')); |
| 360 | tempDirs.push(dir); |
| 361 | return dir; |
| 362 | } |
| 363 | |
| 364 | async function makeExportedSessionZip(content = 'session zip'): Promise<string> { |
| 365 | const dir = await mkdtemp(join(tmpdir(), 'kimi-code-feedback-export-')); |
no test coverage detected