We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b846a77 commit 423db94Copy full SHA for 423db94
src/interceptors/android/adb-commands.ts
@@ -61,6 +61,7 @@ export const getConnectedDevices = batchCalls(async (adbClient: adb.AdbClient) =
61
e.code === 'ENOENT' || // No ADB available
62
e.code === 'EACCES' || // ADB available, but we aren't allowed to run it
63
e.code === 'ECONNREFUSED' || // Tried to start ADB, but still couldn't connect
64
+ e.signal === 'SIGKILL' || // In some envs 'adb start-server' is always killed (why?)
65
(e.cmd && e.code) // ADB available, but "adb start-server" failed
66
) {
67
if (e.code !== 'ENOENT') {
0 commit comments