Skip to content

Commit

Permalink
fix(build): SauceLabs Config (#2)
Browse files Browse the repository at this point in the history
Remove invalid sauceLabs browser configurations
  • Loading branch information
adam-26 committed Mar 6, 2018
2 parents 4e77021 + c68026f commit 39c1c40
Showing 1 changed file with 4 additions and 24 deletions.
28 changes: 4 additions & 24 deletions Gruntfile.js
Expand Up @@ -167,8 +167,8 @@ module.exports = function (grunt) {
'http://127.0.0.1:9999/tests/index.html',
'http://127.0.0.1:9999/tests/browserify/index.html'
],

build: process.env.TRAVIS_BUILD_NUMBER,
testname: process.env.CIRCLE_JOB,
build: process.env.CIRCLE_BUILD_NUM,
sauceConfig: {
'record-video': false,
'capture-html': false,
Expand All @@ -177,11 +177,6 @@ module.exports = function (grunt) {
},
throttled: 3,
browsers: [
{
browserName: 'internet explorer',
platform: 'Windows XP',
version: '7'
},
{
browserName: 'internet explorer',
platform: 'Windows 7',
Expand All @@ -204,28 +199,13 @@ module.exports = function (grunt) {
},
{
browserName: 'chrome',
platform: 'Windows 7',
platform: 'Windows 10',
version: '37'
},
{
browserName: 'firefox',
platform: 'Windows 7',
platform: 'Windows 10',
version: '32'
},
{
browserName: 'iphone',
platform: 'OS X 10.9',
version: '7.1'
},
{
browserName: 'android',
platform: 'Linux',
version: '4.4'
},
{
browserName: 'safari',
platform: 'OS X 10.9',
version: '7'
}
]
}
Expand Down

0 comments on commit 39c1c40

Please sign in to comment.