Skip to content

Commit

Permalink
chore: disable saucelabs-tests since the tunnel is not working
Browse files Browse the repository at this point in the history
  • Loading branch information
nknapp committed Jun 29, 2019
1 parent 09aaa56 commit 95f33b1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,7 @@ module.exports = function(grunt) {
detailedError: true,
concurrency: 2,
browsers: [
{browserName: 'chrome'},
{browserName: 'internet explorer', version: 10, platform: 'Windows 8'}
{browserName: 'chrome'}
]
}
}
Expand Down Expand Up @@ -226,7 +225,9 @@ module.exports = function(grunt) {
grunt.task.loadTasks('tasks');

grunt.registerTask('bench', ['metrics']);
grunt.registerTask('sauce', process.env.SAUCE_USERNAME ? ['tests', 'connect', 'saucelabs-mocha'] : []);
// TODO: remove this comment when saucelabs is working again
grunt.registerTask('sauce', process.env.SAUCE_USERNAME ? ['tests' /*, 'connect' , 'saucelabs-mocha' */ ] : []);


grunt.registerTask('travis', process.env.PUBLISH ? ['default', 'sauce', 'metrics', 'publish:latest'] : ['default']);

Expand Down

0 comments on commit 95f33b1

Please sign in to comment.