From 0277c5e597b105f519a31aea071bfc1b0046fd69 Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Wed, 18 Aug 2021 18:22:32 +0530 Subject: [PATCH] chore: remove redundant console statements (#3671) --- test/e2e/ipc.test.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/e2e/ipc.test.js b/test/e2e/ipc.test.js index 8f590e938b..6fe36ea492 100644 --- a/test/e2e/ipc.test.js +++ b/test/e2e/ipc.test.js @@ -248,7 +248,6 @@ describe("web socket server URL", () => { return proxyServer.listen(proxyPort, proxyHost, callback); } - console.log("HERE"); const proxy = await new Promise((resolve) => { const proxyCreated = startProxy(() => { resolve(proxyCreated); @@ -284,7 +283,6 @@ describe("web socket server URL", () => { }); } - console.log(`http://${proxyHost}:${proxyPort}/main`); await page.goto(`http://${proxyHost}:${proxyPort}/main`, { waitUntil: "networkidle0", });