From 5140a0cae570b95aab59af2bc257204430bc9c03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Estev=C3=A3o=20Soares=20dos=20Santos?= Date: Mon, 15 Jun 2015 14:55:37 +0100 Subject: [PATCH] chore(Grunt): make grunt test only run node tests --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 3eab436e..0c2243bf 100644 --- a/Gruntfile.js +++ b/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']);