(id: string)
| 499 | return id; |
| 500 | }; |
| 501 | const run = (id: string) => |
| 502 | execute(`return await tools.hold({ id: '${id}' });`, { |
| 503 | tools: [{ name: 'hold' }], |
| 504 | callTool, |
| 505 | }); |
| 506 | |
| 507 | const first = run('first'); |
| 508 | await firstHasStarted; |
no test coverage detected