Changing from dot to tap as output format for unit tests. Jenkins recognizes tap.
This commit is contained in:
parent
2473b151d6
commit
38e93e9ef4
2
grunt.js
2
grunt.js
|
@ -174,7 +174,7 @@ module.exports = function(grunt) {
|
||||||
grunt.registerHelper('mocha', function(command, test, done) {
|
grunt.registerHelper('mocha', function(command, test, done) {
|
||||||
var args = {
|
var args = {
|
||||||
cmd: 'mocha',
|
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) {
|
grunt.utils.spawn(args, function(err, result) {
|
||||||
|
|
Loading…
Reference in New Issue