(device: DeviceInfo)
| 777 | } |
| 778 | |
| 779 | function buildProxyDeviceKey(device: DeviceInfo): string { |
| 780 | return `${publicPlatformString(device)}:${device.target ?? 'mobile'}:${device.id}`; |
| 781 | } |
| 782 | |
| 783 | function leaseBackendForDevice(device: DeviceInfo): LeaseBackend | undefined { |
| 784 | if (isIosFamily(device)) return 'ios-instance'; |
no test coverage detected