From fdfcde2b40dbdd3cbadc86cd877d5c38251c9ebd Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Wed, 25 Mar 2020 11:27:45 +0100 Subject: [PATCH] Remove a spurious `console.log` from the `ChromiumBrowser` function in `test/webbrowser.js` file This looks entirely like something which was left-over from debugging, and that line hasn't been touched since PR 4515, especially considering that the corresponding branch in `FirefoxBrowser` doesn't print anything. --- test/webbrowser.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/webbrowser.js b/test/webbrowser.js index 93137ec87..cc03732be 100644 --- a/test/webbrowser.js +++ b/test/webbrowser.js @@ -258,7 +258,6 @@ function ChromiumBrowser(name, execPath, headless) { var m = /([^.\/]+)\.app(\/?)$/.exec(execPath); if (m) { execPath += (m[2] ? "" : "/") + "Contents/MacOS/" + m[1]; - console.log(execPath); } } WebBrowser.call(this, name, execPath, headless);