(baseUrl: string, executionId: string)
| 955 | }; |
| 956 | |
| 957 | const buildResumeApprovalUrl = (baseUrl: string, executionId: string): string => { |
| 958 | const url = new URL(`/resume/${encodeURIComponent(executionId)}`, baseUrl); |
| 959 | return url.toString(); |
| 960 | }; |
| 961 | |
| 962 | const executeCode = (input: { |
| 963 | target: ServerTarget; |
no test coverage detected