Skip to content

Commit c0192a4

Browse files
author
Sassoun Derderian
committed
fix: configure karma-sauce-launcher the way angular did it
1 parent 4ac2908 commit c0192a4

1 file changed

Lines changed: 9 additions & 7 deletions

File tree

karma.conf.js

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,16 +107,18 @@ module.exports = function (config) {
107107
config.set({
108108
reporters: ['progress', 'saucelabs'],
109109
sauceLabs: {
110-
testName: 'workfront-api',
111-
recordScreenshots: false,
112-
recordVideo: false,
110+
build: 'TRAVIS #' + process.env.TRAVIS_BUILD_NUMBER + ' (' + process.env.TRAVIS_BUILD_ID + ')',
113111
connectOptions: {
114-
port: 5757,
115-
tunnelIdentifier: process.env.TRAVIS_JOB_NUMBER
112+
port: 5757
116113
},
117-
public: 'public'
114+
public: 'public',
115+
recordScreenshots: false,
116+
recordVideo: false,
117+
startConnect: false,
118+
testName: 'workfront-api',
119+
tunnelIdentifier: process.env.TRAVIS_JOB_NUMBER
118120
},
119-
captureTimeout: 120000,
121+
captureTimeout: 0,
120122
customLaunchers: customLaunchers,
121123

122124
// start these browsers

0 commit comments

Comments
 (0)