(value: string)
| 176 | // decides whether to SendUserMessage. Propagate workload so that |
| 177 | // second turn is also tagged. |
| 178 | const enqueueResult = (value: string): void => enqueuePendingNotification({ |
| 179 | value, |
| 180 | mode: 'prompt', |
| 181 | priority: 'later', |
| 182 | isMeta: true, |
| 183 | skipSlashCommands: true, |
| 184 | workload: spawnTimeWorkload |
| 185 | }); |
| 186 | void (async () => { |
| 187 | // Wait for MCP servers to settle. Scheduled tasks fire at startup and |
| 188 | // all N drain within ~1ms (since we return immediately), capturing |
no test coverage detected