From 5260b444147c292d746fdfc979c373ae0abda407 Mon Sep 17 00:00:00 2001 From: Jakub Mucha Date: Thu, 28 Oct 2021 14:48:36 +0200 Subject: [PATCH] fix: returns --- commands/puppeteer.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/puppeteer.js b/commands/puppeteer.js index dc542540b..fd10137dc 100644 --- a/commands/puppeteer.js +++ b/commands/puppeteer.js @@ -33,6 +33,7 @@ module.exports = { }, clear: async () => { puppeteerBrowser = null; + return true; }, assignWindows: async () => { let pages = await puppeteerBrowser.pages(); @@ -54,7 +55,7 @@ module.exports = { clearWindows: async () => { mainWindow = null; metamaskWindow = null; - }, + return true; }, isMetamaskWindowActive: async () => { if (activeTabName === 'metamask') {