Parcourir la source

chore(Grunt): make grunt test only run node tests

Estevão Soares dos Santos il y a 10 ans
Parent
commit
5140a0cae5
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      Gruntfile.js

+ 2 - 2
Gruntfile.js

@@ -119,8 +119,8 @@ module.exports = function (grunt) {
 
   grunt.registerTask('concatenate', ['concat']);
   grunt.registerTask('lint', ['jshint', 'jscs']);
-  grunt.registerTask('test', ['lint', 'concat', 'simplemocha']);
-  grunt.registerTask('test-without-building', ['simplemocha']);
+  grunt.registerTask('test', ['lint', 'concat', 'simplemocha:node']);
+  grunt.registerTask('test-without-building', ['simplemocha:node']);
   grunt.registerTask('build', ['test', 'uglify']);
   grunt.registerTask('prep-release', ['build', 'changelog']);