Skip to content
This repository has been archived by the owner on Jun 27, 2020. It is now read-only.

Commit

Permalink
Remove saucelabs tests (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
markandey authored and redonkulus committed May 30, 2019
1 parent 305afb0 commit 1501228
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,14 +164,6 @@ module.exports = function(grunt) {
}, {
src: 'build/browserified/test/test-specific-zone-specific-locale.js'
}]
},
saucelabsTest: {
configFile: 'karma.conf.saucelabs.js',
files: [{
src: 'node_modules/intl/dist/Intl.complete.js'
}, {
src: 'build/browserified/test/test-saucelabs.js'
}]
}
},
mochaTest: {
Expand Down Expand Up @@ -230,7 +222,7 @@ module.exports = function(grunt) {
grunt.loadTasks('tasks');
grunt.registerTask('build', ['clean:build', 'eslint', 'babel', 'copy', 'gen-package', 'browserify', 'uglify']);

grunt.registerTask('test', process.env.TRAVIS ? ['mochaTest', 'karma'] : ['mochaTest'].concat(allBut('karma', 'saucelabsTest')));
grunt.registerTask('test', process.env.TRAVIS ? ['mochaTest', 'karma'] : ['mochaTest'].concat(allBut('karma')));

grunt.registerTask('default', ['build', 'test']);
grunt.loadNpmTasks('grunt-contrib-copy');
Expand Down

0 comments on commit 1501228

Please sign in to comment.