Skip to content

Commit

Permalink
feat(config): expose commandTimeout, idleTimeout, maxDuration options
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed Aug 22, 2017
2 parents 0362ad5 + f607303 commit 79c70c2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/sauce_launcher.js
Expand Up @@ -51,6 +51,9 @@ function processConfig (helper, config, args) {
'disable-popup-handler': true,
build: build || null,
public: null,
commandTimeout: 300,
idleTimeout: 90,
maxDuration: 1800,
customData: {}
}

Expand All @@ -66,6 +69,9 @@ function processConfig (helper, config, args) {
'record-screenshots': config.recordScreenshots,
public: config.public,
parentTunnel: config.parentTunnel,
commandTimeout: config.commandTimeout,
idleTimeout: config.idleTimeout,
maxDuration: config.maxDuration,
customData: config.customData
}, {
// Need to rename some properties from args
Expand Down

0 comments on commit 79c70c2

Please sign in to comment.