Changing from dot to tap as output format for unit tests. Jenkins recognizes tap.

This commit is contained in:
Elf M. Sternberg 2012-07-10 11:02:43 -07:00
parent 2473b151d6
commit 38e93e9ef4
1 changed files with 1 additions and 1 deletions

View File

@ -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) {