(runId: string)
| 54 | } |
| 55 | |
| 56 | function replayRun(runId: string): ApiPromise<ReplayRunResponse> { |
| 57 | const apiClient = apiClientManager.client; |
| 58 | |
| 59 | if (!apiClient) { |
| 60 | throw apiClientMissingError(); |
| 61 | } |
| 62 | |
| 63 | return apiClient.replayRun(runId); |
| 64 | } |
| 65 | |
| 66 | function cancelRun(runId: string): ApiPromise<CanceledRunResponse> { |
| 67 | const apiClient = apiClientManager.client; |
nothing calls this directly
no test coverage detected
searching dependent graphs…