Add wait: false when opening app in browser (#5821)

This commit is contained in:
W1lkins
2019-03-15 19:48:55 +00:00
committed by Ian Sutherland
parent 6902736747
commit 7864ba3ce7

View File

@@ -96,7 +96,7 @@ function startBrowserProcess(browser, url) {
// Fallback to opn
// (It will always open new tab)
try {
var options = { app: browser };
var options = { app: browser, wait: false };
opn(url, options).catch(() => {}); // Prevent `unhandledRejection` error.
return true;
} catch (err) {