(entry: Record<string, unknown>)
| 121 | const bearer = yield* mcp.mintBearer(emailOf(identity)); |
| 122 | const diagnostics: unknown[] = []; |
| 123 | const record = (entry: Record<string, unknown>): void => { |
| 124 | diagnostics.push(entry); |
| 125 | console.log(JSON.stringify(entry)); |
| 126 | // Vitest swallows worker stdout on passing runs; the artifact dir is the |
| 127 | // durable copy of what each attempt observed. |
| 128 | writeFileSync(join(runDir, "repro-diagnostics.json"), JSON.stringify(diagnostics, null, 2)); |
| 129 | }; |
| 130 | |
| 131 | // 1. Open a real session (SDK init handshake persists the session in the |
| 132 | // DO), do a call, close the client. |
no test coverage detected