()
| 381 | ); |
| 382 | |
| 383 | const resume = () => |
| 384 | Effect.promise(() => |
| 385 | session.client.callTool({ |
| 386 | name: "resume", |
| 387 | arguments: { executionId: executionId ?? "", action: "accept", content: "{}" }, |
| 388 | }), |
| 389 | ); |
| 390 | |
| 391 | const first = yield* resume(); |
| 392 | expect(first.isError, "the first resume completes the execution").not.toBe(true); |
no outgoing calls
no test coverage detected