(udid: string, body: unknown)
| 237 | const requestAction = <T = unknown>(udid: string, body: unknown) => |
| 238 | requestJson<T>(endpoint, "POST", actionPath(udid), body); |
| 239 | const requestActionOk = (udid: string, body: unknown) => |
| 240 | requestAction(udid, body).then(() => undefined); |
| 241 | const requireUdid = (udid?: string) => { |
| 242 | const resolved = udid ?? defaultUdid; |
| 243 | if (!resolved) { |
no test coverage detected