(
udid: string,
options: RequestInit = {},
)
| 51 | } |
| 52 | |
| 53 | export async function fetchSimulatorState( |
| 54 | udid: string, |
| 55 | options: RequestInit = {}, |
| 56 | ): Promise<SimulatorStateResponse> { |
| 57 | return apiRequest<SimulatorStateResponse>( |
| 58 | `/api/simulators/${encodeURIComponent(udid)}/state`, |
| 59 | options, |
| 60 | ); |
| 61 | } |
| 62 | |
| 63 | export async function fetchAccessibilityTree( |
| 64 | udid: string, |
no test coverage detected