(filePath: string, line: string)
| 91 | } |
| 92 | |
| 93 | async function appendLog(filePath: string, line: string): Promise<void> { |
| 94 | await appendLine(filePath, `[${new Date().toISOString()}] ${line}`); |
| 95 | } |
| 96 | |
| 97 | function sleep(ms: number): Promise<void> { |
| 98 | return new Promise((resolveSleep) => setTimeout(resolveSleep, ms)); |
no test coverage detected