(port)
| 5 | const reverse = (device, port) => client.reverse(device, `tcp:${port}`, `tcp:${port}`) |
| 6 | |
| 7 | export const tryADBReverse = async (port) => { |
| 8 | const devices = await client.listDevices().filter((device) => device.type === 'device') |
| 9 | return Promise.all(devices.map((device) => reverse(device.id, port))) |
| 10 | } |
no test coverage detected