()
| 130 | |
| 131 | // fetch device information |
| 132 | const fetchDeviceInfo = async () => { |
| 133 | const { system: { hardware, firmware } } = await device.fetchDeviceInfo(); |
| 134 | terminal.green(`${hardware.type} (hardware: ${hardware.version}, firmware: ${firmware.version})`); |
| 135 | }; |
| 136 | await (quiet ? device.fetchDeviceInfo() : progressFunctionWithMessage(fetchDeviceInfo, 'Fetching device information')); |
| 137 | |
| 138 | // fetch device abilities |
nothing calls this directly
no test coverage detected