(taskId: string)
| 70 | * Get the output file path for a task |
| 71 | */ |
| 72 | export function getTaskOutputPath(taskId: string): string { |
| 73 | return join(getTaskOutputDir(), `${taskId}.output`) |
| 74 | } |
| 75 | |
| 76 | // Tracks fire-and-forget promises (initTaskOutput, initTaskOutputAsSymlink, |
| 77 | // evictTaskOutput, #drain) so tests can drain before teardown. Prevents the |
no test coverage detected