(
udid: string,
options: RequestInit = {},
)
| 135 | } |
| 136 | |
| 137 | export async function fetchSimulatorProcesses( |
| 138 | udid: string, |
| 139 | options: RequestInit = {}, |
| 140 | ): Promise<SimulatorProcessListResponse> { |
| 141 | return apiRequest<SimulatorProcessListResponse>( |
| 142 | `/api/simulators/${encodeURIComponent(udid)}/processes`, |
| 143 | options, |
| 144 | ); |
| 145 | } |
| 146 | |
| 147 | export async function fetchSimulatorPerformance( |
| 148 | udid: string, |
nothing calls this directly
no test coverage detected