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:
parent
dcb16af968
commit
fdfcde2b40
@ -258,7 +258,6 @@ function ChromiumBrowser(name, execPath, headless) {
|
|||||||
var m = /([^.\/]+)\.app(\/?)$/.exec(execPath);
|
var m = /([^.\/]+)\.app(\/?)$/.exec(execPath);
|
||||||
if (m) {
|
if (m) {
|
||||||
execPath += (m[2] ? "" : "/") + "Contents/MacOS/" + m[1];
|
execPath += (m[2] ? "" : "/") + "Contents/MacOS/" + m[1];
|
||||||
console.log(execPath);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
WebBrowser.call(this, name, execPath, headless);
|
WebBrowser.call(this, name, execPath, headless);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user