ac6c5fe5 by Parul Sharma

change grunt task to karma:saucelabs and remove qunit

1 parent 98f98dfd
...@@ -119,7 +119,8 @@ module.exports = function(grunt) { ...@@ -119,7 +119,8 @@ module.exports = function(grunt) {
119 }, 119 },
120 120
121 dev: { 121 dev: {
122 browsers: ['Chrome', 'Safari', 'Firefox', 'Opera', 'IE', 'PhantomJS', 'ChromeCanary'], 122 browsers: ['Chrome', 'Safari', 'Firefox',
123 'Opera', 'IE', 'PhantomJS', 'ChromeCanary'],
123 configFile: 'test/localkarma.conf.js', 124 configFile: 'test/localkarma.conf.js',
124 autoWatch: true 125 autoWatch: true
125 }, 126 },
...@@ -259,8 +260,7 @@ module.exports = function(grunt) { ...@@ -259,8 +260,7 @@ module.exports = function(grunt) {
259 'concat', 260 'concat',
260 'uglify']); 261 'uglify']);
261 262
262 grunt.registerTask('test', 263 grunt.registerTask('test', ['manifests-to-js', 'karma:saucelabs']);
263 ['manifests-to-js', 'qunit', 'karma']);
264 264
265 // travis build task 265 // travis build task
266 grunt.registerTask('build:travis', ['jshint', 'test:node', 'test:sauce-browser']); 266 grunt.registerTask('build:travis', ['jshint', 'test:node', 'test:sauce-browser']);
......