(value: string)
| 124 | // decides whether to SendUserMessage. Propagate workload so that |
| 125 | // second turn is also tagged. |
| 126 | const enqueueResult = (value: string): void => enqueuePendingNotification({ |
| 127 | value, |
| 128 | mode: 'prompt', |
| 129 | priority: 'later', |
| 130 | isMeta: true, |
| 131 | skipSlashCommands: true, |
| 132 | workload: spawnTimeWorkload |
| 133 | }); |
| 134 | void (async () => { |
| 135 | // Wait for MCP servers to settle. Scheduled tasks fire at startup and |
| 136 | // all N drain within ~1ms (since we return immediately), capturing |
no test coverage detected