From 38e93e9ef40e78e4e3c4b064ddce7283ef294e98 Mon Sep 17 00:00:00 2001 From: "Elf M. Sternberg" Date: Tue, 10 Jul 2012 11:02:43 -0700 Subject: [PATCH] Changing from dot to tap as output format for unit tests. Jenkins recognizes tap. --- grunt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grunt.js b/grunt.js index e039c18..ed84f79 100644 --- a/grunt.js +++ b/grunt.js @@ -174,7 +174,7 @@ module.exports = function(grunt) { grunt.registerHelper('mocha', function(command, test, done) { var args = { cmd: 'mocha', - args: ['--compilers', 'coffee:coffee-script', '-R', 'dot', '-C', test] + args: ['--compilers', 'coffee:coffee-script', '-R', 'tap', '-C', test] }; grunt.utils.spawn(args, function(err, result) {