(device: DeviceInfo)
| 104 | } |
| 105 | |
| 106 | function deviceInventoryGroupForDevice(device: DeviceInfo): DeviceInventoryGroup { |
| 107 | if (isIosFamily(device) || isMacOs(device)) return 'apple'; |
| 108 | return device.platform; |
| 109 | } |
| 110 | |
| 111 | // Exported so the Apple platform-plugin's `discoverDevices` reuses the SAME |
| 112 | // host-mac fast-path predicate instead of carrying a divergent copy. |
no test coverage detected