(taskId)
| 189 | return specs.map((spec) => ({ taskId: `task_${spec.id}`, status: "starting" as const })); |
| 190 | }, |
| 191 | async waitForAgentTask(taskId) { |
| 192 | const id = taskId.replace("task_", ""); |
| 193 | return { |
| 194 | taskId, |
| 195 | reportMarkdown: `Plan ${id}`, |
| 196 | planFilePath: `/tmp/mux/plans/${id}.md`, |
| 197 | structuredOutput: {}, |
| 198 | }; |
| 199 | }, |
| 200 | }); |
| 201 | |
| 202 | await expect(runner.run("wfr_parallel_plan_result")).resolves.toEqual({ |
no test coverage detected