support for test:server and test:client grunt tasks which were removed from the merge of 0.4.0 into master

This commit is contained in:
Liran Tal
2015-07-04 01:42:11 +03:00
parent 52fe443429
commit 2be8f71199

View File

@@ -231,6 +231,8 @@ module.exports = function (grunt) {
// Run the project tests
grunt.registerTask('test', ['env:test', 'copy:localConfig', 'mongoose', 'mochaTest', 'karma:unit']);
grunt.registerTask('test:server', ['env:test', 'mongoose', 'mochaTest']);
grunt.registerTask('test:client', ['env:test', 'mongoose', 'karma:unit']);
// Run the project in development mode
grunt.registerTask('default', ['env:dev', 'lint', 'copy:localConfig', 'concurrent:default']);