We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4410fb commit dcbade3Copy full SHA for dcbade3
bin/runner.js
@@ -94,6 +94,7 @@ function launchBrowser(browser, url) {
94
} else {
95
timeout = 300;
96
}
97
+ var activityTimeout = timeout - 10;
98
99
client.createWorker(browser, function (err, worker) {
100
if (err || typeof worker !== 'object') {
@@ -132,7 +133,7 @@ function launchBrowser(browser, url) {
132
133
utils.alertBrowserStack(subject, content);
134
});
135
- }, timeout * 1000);
136
+ }, activityTimeout * 1000);
137
138
setTimeout(function () {
139
if (workers[key]) {
@@ -145,7 +146,7 @@ function launchBrowser(browser, url) {
145
146
147
148
- }, (timeout * 1000));
149
+ }, (activityTimeout * 1000));
150
151
152
}, 2000);
0 commit comments