Skip to content

Commit 3cf645e

Browse files
committed
fix(Builds): Turn off Safari 5 for SL
Safari 5 seems to be hanging a lot (I believe) on SauceLabs. They're own statistics confirms that it is just an awful browser: https://saucelabs.com/resources/the-surprising-worst-browser Hopefully this will get builds to complete
1 parent bd4490d commit 3cf645e

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

lib/grunt/utils.js

+7-6
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,13 @@ var util = module.exports = {
6565
base: 'SauceLabs',
6666
browserName: 'firefox'
6767
},
68-
'SL_Safari_5': {
69-
base: 'SauceLabs',
70-
browserName: 'safari',
71-
platform: 'Mac 10.6',
72-
version: '5'
73-
},
68+
// NOTE: this seems to be hanging builds a lot so I'm turning it off -- Brian (20141118)
69+
// 'SL_Safari_5': {
70+
// base: 'SauceLabs',
71+
// browserName: 'safari',
72+
// platform: 'Mac 10.6',
73+
// version: '5'
74+
// },
7475
'SL_Safari_6': {
7576
base: 'SauceLabs',
7677
browserName: 'safari',

0 commit comments

Comments
 (0)