From 886a149a9c7e9d299a5cf7168b2452dc9f1b9a2e Mon Sep 17 00:00:00 2001 From: Martin Svoboda Date: Mon, 24 Jun 2024 21:20:30 +0200 Subject: [PATCH] Remove log --- __tests__/adbClient/trackDevices.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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); });