Skip to content

Commit

Permalink
adds more browsers to be run in Saucelabs
Browse files Browse the repository at this point in the history
Closes #111
  • Loading branch information
marclaval committed Mar 31, 2014
1 parent 3ac3f30 commit 0958e70
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ node_js:

env:
global:
- SAUCE_USERNAME=ariatemplates
- SAUCE_ACCESS_KEY=620e638e-90d2-48e1-b66c-f9505dcb888b
- SAUCE_USERNAME=hashspace
- SAUCE_ACCESS_KEY=9e47b05c-b1de-43ce-b9f0-dc64a3bc5f35
- secure: bGENSGZguDwxsHJu9JyEggr0KhNd9l/RguvlS4zknMV32Hujtt60tsD9X9IKRIO96Fv4loDburOco38SdzezVzd6AS/wsxJsoqD//C2+BXJKzU4MsGXeqS5hx6r2CiTWCnDoIu2QvyK9qiO+Gu0VII76//3pa50m7EVYT79jVxM=

before_install:
Expand Down
42 changes: 33 additions & 9 deletions gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ module.exports = function (grunt) {
browsers: ['Firefox'],
// global config for SauceLabs
sauceLabs: {
username: 'ariatemplates',
accessKey: '620e638e-90d2-48e1-b66c-f9505dcb888b',
username: 'hashspace',
accessKey: '9e47b05c-b1de-43ce-b9f0-dc64a3bc5f35',
testName: '#space runtime tests'
},
// define SL browsers
Expand All @@ -82,7 +82,7 @@ module.exports = function (grunt) {
base: 'SauceLabs',
browserName: 'chrome',
platform: 'Linux',
version: '30'
version: '33'
},
'SL_Firefox': {
base: 'SauceLabs',
Expand Down Expand Up @@ -125,17 +125,41 @@ module.exports = function (grunt) {
platform: 'Windows 8.1',
version: '11'
},
'IOS': {
'SL_iOS_6': {
base: 'SauceLabs',
browserName: 'iphone',
platform: 'OS X 10.8',
version: '6.1'
},
'ANDROID': {
'SL_iOS_7': {
base: 'SauceLabs',
browserName: 'iphone',
platform: 'OS X 10.9',
version: '7.1'
},
'SL_Android_4.0': {
base: 'SauceLabs',
browserName: 'ANDROID',
platform: 'Linux',
version: '4.0'
},
'SL_Android_4.1': {
base: 'SauceLabs',
browserName: 'ANDROID',
platform: 'Linux',
version: '4.1'
},
'SL_Android_4.2': {
base: 'SauceLabs',
browserName: 'ANDROID',
platform: 'Linux',
version: '4.2'
},
'SL_Android_4.3': {
base: 'SauceLabs',
browserName: 'ANDROID',
platform: 'Linux',
version: '4.3'
}
}
//logLevel: 'LOG_INFO'
Expand Down Expand Up @@ -175,15 +199,15 @@ module.exports = function (grunt) {
transports: ['xhr-polling'],
singleRun: true,
browserNoActivityTimeout: 20000,
captureTimeout: 180000,
browsers: ['SL_IE_8', 'SL_IE_9', 'SL_IE_10', 'SL_IE_11', 'SL_Safari_6', 'SL_Safari_7', 'SL_Firefox', 'SL_Chrome', 'ANDROID'],
captureTimeout: 300000,
browsers: ['SL_IE_8', 'SL_IE_9', 'SL_IE_10', 'SL_IE_11', 'SL_Safari_6', 'SL_Safari_7', 'SL_Firefox', 'SL_Chrome', 'SL_Android_4.0', 'SL_Android_4.1', 'SL_Android_4.2', 'SL_Android_4.3', 'SL_iOS_7'],
reporters: ['dots', 'saucelabs']
},
sauce: {
singleRun: true,
browserNoActivityTimeout: 20000,
captureTimeout: 180000,
browsers: ['SL_IE_8', 'SL_IE_9', 'SL_IE_10', 'SL_IE_11', 'SL_Safari_6', 'SL_Safari_7', 'SL_Firefox', 'SL_Chrome', 'ANDROID'],
captureTimeout: 300000,
browsers: ['SL_IE_8', 'SL_IE_9', 'SL_IE_10', 'SL_IE_11', 'SL_Safari_6', 'SL_Safari_7', 'SL_Firefox', 'SL_Chrome', 'SL_Android_4.0', 'SL_Android_4.1', 'SL_Android_4.2', 'SL_Android_4.3', 'SL_iOS_7'],
reporters: ['dots', 'saucelabs']
}
},
Expand Down

0 comments on commit 0958e70

Please sign in to comment.