()
| 331 | ); |
| 332 | |
| 333 | const resume = () => |
| 334 | Effect.promise(() => |
| 335 | session.client.callTool({ |
| 336 | name: "resume", |
| 337 | arguments: { executionId: executionId ?? "", action: "accept", content: "{}" }, |
| 338 | }), |
| 339 | ); |
| 340 | |
| 341 | const first = yield* resume(); |
| 342 | expect(first.isError, "the first resume completes the execution").not.toBe(true); |
no outgoing calls
no test coverage detected