Skip to content

Commit

Permalink
feat(launcher): expose commandTimeout, idleTimeout, maxDuration options
Browse files Browse the repository at this point in the history
fixes #62
  • Loading branch information
JamieMason committed Aug 15, 2016
1 parent 2e8ff42 commit 3fe1c75
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/sauce_launcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ function processConfig (helper, config, args) {
'disable-popup-handler': true,
build: build || null,
public: null,
commandTimeout: 300,
idleTimeout: 90,
maxDuration: 1800,
customData: {}
}

Expand All @@ -61,6 +64,9 @@ function processConfig (helper, config, args) {
'record-video': config.recordVideo,
'record-screenshots': config.recordScreenshots,
public: config.public,
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 3fe1c75

Please sign in to comment.