(r: RawResult)
| 108 | const toolsListMessage = { jsonrpc: "2.0" as const, id: "brick-tools-list", method: "tools/list" }; |
| 109 | |
| 110 | const isBrick = (r: RawResult): boolean => |
| 111 | r.status >= 500 || /"code"\s*:\s*-32603/.test(r.body) || /Already connected/i.test(r.body); |
| 112 | |
| 113 | scenario( |
| 114 | "REGRESSION · concurrent SSE GET + POST after idle-dispose keeps the session alive", |
no outgoing calls
no test coverage detected