(runJson, timeoutMs)
| 46 | } |
| 47 | |
| 48 | function availableDeviceTypes(runJson, timeoutMs) { |
| 49 | return ( |
| 50 | runJson("xcrun", ["simctl", "list", "devicetypes", "-j"], { |
| 51 | timeoutMs, |
| 52 | }).devicetypes ?? [] |
| 53 | ); |
| 54 | } |
| 55 | |
| 56 | function selectRuntime(runtimes, sdkVersion, env) { |
| 57 | if (runtimes.length === 0) { |
no test coverage detected