Skip to content

Commit

Permalink
fix(utils.js): Update browser setting based on changes to SauceLabs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Portugal, Marcelo authored and mportuga committed Nov 6, 2017
1 parent bcbd843 commit 0cdf4e9
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions lib/grunt/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,35 +78,36 @@ var util = module.exports = {
base: 'SauceLabs',
browserName: 'firefox'
},
'SL_Safari_5': {
'SL_Safari_7': {
base: 'SauceLabs',
browserName: 'safari',
version: '5'
platform: 'Mac 10.9',
version: '7'
},
'SL_Safari_6': {
'SL_Safari_8': {
base: 'SauceLabs',
browserName: 'safari',
platform: 'Mac 10.8',
version: '6'
platform: 'Mac 10.10',
version: '8'
},
'SL_Safari_7': {
'SL_Safari_9': {
base: 'SauceLabs',
browserName: 'safari',
platform: 'Mac 10.9',
version: '7'
platform: 'Mac 10.11',
version: '9'
},
'SL_Safari_10': {
base: 'SauceLabs',
browserName: 'safari',
platform: 'Mac 10.12',
version: '10'
},
'SL_Safari_11': {
base: 'SauceLabs',
browserName: 'safari',
platform: 'Mac 10.12',
version: '11'
},
// 'SL_IE_8_XP': {
// base: 'SauceLabs',
// browserName: 'internet explorer',
// platform: 'Windows XP',
// version: '8'
// },
// 'SL_IE_8': {
// base: 'SauceLabs',
// browserName: 'internet explorer',
// platform: 'Windows 7',
// version: '8'
// },
'SL_IE_9': {
base: 'SauceLabs',
browserName: 'internet explorer',
Expand All @@ -126,6 +127,11 @@ var util = module.exports = {
platform: 'Windows 8.1',
version: '11'
},
'SL_MicrosoftEdge': {
base: 'SauceLabs',
browserName: 'MicrosoftEdge',
platform: 'Windows 10'
},

// NOTE (mportuga): Currently android keeps failing. It might be a change to Sauce Labs to use Appium instead of selenium
// 'SL_Android_4.4': {
Expand All @@ -140,12 +146,6 @@ var util = module.exports = {
// platform: 'Linux',
// version: '5.0'
// },
'SL_Linux_Opera': {
base: 'SauceLabs',
browserName: 'opera',
platform: 'Linux',
version: '12'
},

// NOTE (c0bra): Currently both iOS 6 and 7 will run (w/ a 45 second activity timeout) and the tests pass, but after that the session just hangs indefinitely -- 20140320
// 'SL_iOS_6': {
Expand Down

0 comments on commit 0cdf4e9

Please sign in to comment.