Skip to content

Commit 3fe1c75

Browse files
committedAug 15, 2016
feat(launcher): expose commandTimeout, idleTimeout, maxDuration options
fixes #62
1 parent 2e8ff42 commit 3fe1c75

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎lib/sauce_launcher.js

+6
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ function processConfig (helper, config, args) {
4747
'disable-popup-handler': true,
4848
build: build || null,
4949
public: null,
50+
commandTimeout: 300,
51+
idleTimeout: 90,
52+
maxDuration: 1800,
5053
customData: {}
5154
}
5255

@@ -61,6 +64,9 @@ function processConfig (helper, config, args) {
6164
'record-video': config.recordVideo,
6265
'record-screenshots': config.recordScreenshots,
6366
public: config.public,
67+
commandTimeout: config.commandTimeout,
68+
idleTimeout: config.idleTimeout,
69+
maxDuration: config.maxDuration,
6470
customData: config.customData
6571
}, {
6672
// Need to rename some properties from args

0 commit comments

Comments
 (0)
Please sign in to comment.