Commit cdc92e81 authored by Chris Rebert's avatar Chris Rebert
Browse files

only run browserstack tests in Travis

parent 093cda24
Showing with 5 additions and 1 deletion
+5 -1
......@@ -129,7 +129,11 @@ module.exports = function(grunt) {
// Test task.
grunt.registerTask('test', ['jshint', 'qunit', 'browserstack_runner']);
var testSubtasks = ['jshint', 'qunit'];
if (process.env.TRAVIS) {
testSubtasks.push('browserstack_runner');
}
grunt.registerTask('test', testSubtasks);
// JS distribution task.
grunt.registerTask('dist-js', ['concat', 'uglify']);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment