diff --git a/lib/SauceBrowser.js b/lib/SauceBrowser.js index 88bba9d..5621b56 100644 --- a/lib/SauceBrowser.js +++ b/lib/SauceBrowser.js @@ -169,7 +169,7 @@ SauceBrowser.prototype.start = function() { clearTimeout(self.noOutputTimeout); self.noOutputTimeout = setTimeout(function() { - self.shutdown(new Error('Did not receive any new output from browser for 30s, shutting down')); + self.shutdown(new Error('Did not receive any new output from browser for ' + Math.round(self._opt.browser_output_timeout/1000) + ', shutting down')); }, self._opt.browser_output_timeout); }