083e264e by Gary Katsevman

Don't use saucelabs for a bit now

1 parent 6a3fccb1
......@@ -200,7 +200,6 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-open');
grunt.loadNpmTasks('grunt-concurrent');
grunt.loadNpmTasks('grunt-saucelabs');
grunt.loadNpmTasks('grunt-contrib-watch');
......@@ -260,10 +259,10 @@ module.exports = function(grunt) {
'concat',
'uglify']);
grunt.registerTask('test', ['manifests-to-js', 'karma:saucelabs']);
grunt.registerTask('test', ['jshint', 'manifests-to-js', 'karma:saucelabs']);
// travis build task
grunt.registerTask('build:travis', ['jshint', 'test:node', 'test:sauce-browser']);
grunt.registerTask('test-local', ['jshint', 'manifests-to-js', 'qunit']);
};
......
......@@ -10,7 +10,7 @@
},
"license": "Apache 2",
"scripts": {
"test": "grunt test"
"test": "grunt test-local"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.6.0",
......
......@@ -11,6 +11,7 @@
"boss": true,
"eqnull": true,
"browser": true,
"node": true,
"predef": [
"QUnit",
"module",
......@@ -26,6 +27,7 @@
"notDeepEqual",
"strictEqual",
"notStrictEqual",
"throws"
"throws",
"process"
]
}
......
......@@ -26,7 +26,7 @@ module.exports = function(config) {
// - PhantomJS
// - IE (only Windows)
// Example usage:
browsers: ['chrome_test']
browsers: ['chrome_test'],
//'firefox_test',
//'safari_test',
//'ipad_test',
......