(text: string)
| 87 | }; |
| 88 | |
| 89 | const extractExecutionId = (text: string): string => { |
| 90 | const match = /executionId:\s*(exec_[A-Za-z0-9_]+)/.exec(text); |
| 91 | assert(match?.[1], `CLI output did not contain an execution id:\n${text}`); |
| 92 | return match[1]; |
| 93 | }; |
| 94 | |
| 95 | const callTool = (ctx: CliContext, path: readonly string[], args: unknown = {}) => |
| 96 | runCli(ctx, [ |
no test coverage detected