Skip to content

Commit 21472df

Browse files
committed
Fix Sauce Labs Browser Matrix by setting sauce build id
1 parent e268154 commit 21472df

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

karma.conf.ci.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module.exports = function(config) {
1+
module.exports = function (config) {
22
'use strict';
33
if (!process.env.SAUCE_USERNAME || !process.env.SAUCE_ACCESS_KEY) {
44
console.log('Make sure the SAUCE_USERNAME and SAUCE_ACCESS_KEY environment variables are set.');
@@ -95,7 +95,9 @@ module.exports = function(config) {
9595
connectOptions: {
9696
port: 5757,
9797
logfile: 'sauce_connect.log'
98-
}
98+
},
99+
build: process.env.TRAVIS_BUILD_ID || Math.floor((new Date).getTime() / 1000 - 1230768000).toString(),
100+
tags: [process.env.TRAVIS_BRANCH || "local"]
99101
},
100102
customLaunchers: customLaunchers,
101103
browsers: Object.keys(customLaunchers),

0 commit comments

Comments
 (0)