diff --git a/__tests__/adbClient/trackDevices.ts b/__tests__/adbClient/trackDevices.ts index 1a79f26b..c77fd7df 100644 --- a/__tests__/adbClient/trackDevices.ts +++ b/__tests__/adbClient/trackDevices.ts @@ -238,9 +238,7 @@ describe('Track devices', () => { const adb = new Client({ noAutoStart: true, port }); const tracker = await adb.trackDevices(); const result = await promisify((cb) => { - tracker.on('error', (error) => { - console.log(error); - }); + tracker.on('error', () => {}); tracker.on('end', () => { cb(null, undefined); });