We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d49d4dd commit 1c0c898Copy full SHA for 1c0c898
2 files changed
.travis.yml
@@ -5,6 +5,8 @@ env:
5
global:
6
- SAUCE_USERNAME=aidaskk
7
- SAUCE_ACCESS_KEY=6e96b47e-6665-4f69-beaa-085e5d5b6b9b
8
+addons:
9
+ sauce_connect: true
10
before_script:
11
- sh -e /etc/init.d/xvfb start
12
- npm install --quiet -g grunt-cli karma
Gruntfile.js
@@ -69,10 +69,11 @@ module.exports = function(grunt) {
69
},
70
// global config for SauceLabs
71
sauceLabs: {
72
+ testName: 'flow.js',
73
username: grunt.option('sauce-username') || process.env.SAUCE_USERNAME,
74
accessKey: grunt.option('sauce-access-key') || process.env.SAUCE_ACCESS_KEY,
- startConnect: grunt.option('sauce-local') ? false : true ,
75
- testName: 'flow.js'
+ tunnelIdentifier: process.env.TRAVIS_JOB_NUMBER,
76
+ startConnect: false
77
}
78
79
0 commit comments