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.
This commit is contained in:
Jonas Jenwald 2020-03-25 11:27:45 +01:00
parent dcb16af968
commit fdfcde2b40

View File

@ -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);