update the task name to support running 'npm test'

This commit is contained in:
Spencer Alger
2015-01-29 10:54:20 -07:00
parent 043e7b5778
commit 3d0f78e6ae

View File

@ -19,10 +19,11 @@ module.exports = function (grunt) {
var branches = branch ? [branch] : utils.branches; var branches = branch ? [branch] : utils.branches;
process.env.ES_PORT = process.env.ES_PORT || 9400;
branches.forEach(function (branch) { branches.forEach(function (branch) {
tasks.push( tasks.push(
'esvm:' + branch, 'esvm:' + branch,
'mochacov:integration_' + branch, 'mocha_integration:' + branch,
'esvm_shutdown:' + branch 'esvm_shutdown:' + branch
); );
}); });