]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fix #14609
authorChris Rebert <code@rebertia.com>
Thu, 18 Sep 2014 00:34:57 +0000 (17:34 -0700)
committerChris Rebert <code@rebertia.com>
Thu, 18 Sep 2014 00:36:07 +0000 (17:36 -0700)
Gruntfile.js

index 7738ab89f6c8bb3021cf8c49d3c381cfa666b1d0..4b968f9db2e72540504032eab7098cf907fd25e9 100644 (file)
@@ -410,7 +410,7 @@ module.exports = function (grunt) {
   var testSubtasks = [];
   // Skip core tests if running a different subset of the test suite
   if (runSubset('core')) {
-    testSubtasks = testSubtasks.concat(['dist-css', 'dist-js', 'csslint:dist', 'jshint:core', 'jshint:test', 'jshint:grunt', 'jscs:core', 'jscs:test', 'jscs:grunt', 'qunit', 'docs']);
+    testSubtasks = testSubtasks.concat(['dist-css', 'dist-js', 'csslint:dist', 'test-js', 'docs']);
   }
   // Skip HTML validation if running a different subset of the test suite
   if (runSubset('validate-html') &&
@@ -428,6 +428,7 @@ module.exports = function (grunt) {
     testSubtasks.push('saucelabs-qunit');
   }
   grunt.registerTask('test', testSubtasks);
+  grunt.registerTask('test-js', ['jshint:core', 'jshint:test', 'jshint:grunt', 'jscs:core', 'jscs:test', 'jscs:grunt', 'qunit']);
 
   // JS distribution task.
   grunt.registerTask('dist-js', ['concat', 'uglify:core']);