We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e268154 commit 21472dfCopy full SHA for 21472df
karma.conf.ci.js
@@ -1,4 +1,4 @@
1
-module.exports = function(config) {
+module.exports = function (config) {
2
'use strict';
3
if (!process.env.SAUCE_USERNAME || !process.env.SAUCE_ACCESS_KEY) {
4
console.log('Make sure the SAUCE_USERNAME and SAUCE_ACCESS_KEY environment variables are set.');
@@ -95,7 +95,9 @@ module.exports = function(config) {
95
connectOptions: {
96
port: 5757,
97
logfile: 'sauce_connect.log'
98
- }
+ },
99
+ build: process.env.TRAVIS_BUILD_ID || Math.floor((new Date).getTime() / 1000 - 1230768000).toString(),
100
+ tags: [process.env.TRAVIS_BRANCH || "local"]
101
},
102
customLaunchers: customLaunchers,
103
browsers: Object.keys(customLaunchers),
0 commit comments