( udid: string, recordingId: string, )
| 179 | } |
| 180 | |
| 181 | export function stopSimulatorScreenRecording( |
| 182 | udid: string, |
| 183 | recordingId: string, |
| 184 | ): Promise<Blob> { |
| 185 | return fetchSimulatorBlob( |
| 186 | `/api/simulators/${encodeURIComponent(udid)}/screen-recording/${encodeURIComponent(recordingId)}/stop`, |
| 187 | { |
| 188 | method: "POST", |
| 189 | }, |
| 190 | ); |
| 191 | } |
no test coverage detected