6

当测试失败时,我需要查看堆栈跟踪,但是当 Grunt 运行 Mocha 测试套件时,有些东西隐藏了它。当我自己运行测试时(mocha --recursive),我确实得到了堆栈跟踪:

site/server/server.js:10
    server.use( express.static( path.join( __dirname( '../client' ))));
                                           ^
TypeError: string is not a function
    at ...

但是有了这个 Gruntfile:

'use strict';

var should = require( 'should' );

module.exports = function( grunt ) {
    grunt.initConfig({
        cafemocha: {
            test: {
                src: 'server/test/**/test-*.js',
                options: {/*
                    ui: 'bdd',
                    growl: true,
                    coverage: true,
                    reporter: 'spec'
                */}
            }
        },

        watch: {
            files: [
                'server/**/*.js',
                'Gruntfile.js',
                'package.json'
            ],
            tasks: [ 'test' ]
        },

        complexity: {
            generic: {
                src: [
                    'server/**/*.js',
                    'Gruntfile.js'
                ],
                options: {
                    cyclomatic: 2,
                    halstead: 9,
                    maintainability: 80
                }
            }
        }
    });

    grunt.loadNpmTasks( 'grunt-notify' );
    grunt.loadNpmTasks( 'grunt-contrib-watch' );
    grunt.loadNpmTasks( 'grunt-cafe-mocha' );
    grunt.loadNpmTasks( 'grunt-complexity' );

    grunt.registerTask( 'default', [ 'cafemocha' ]);
    grunt.registerTask( 'test', [ 'cafemocha', 'complexity' ]);
};

我得到的只是一个错误的摘要:

$ grunt test
Running "cafemocha:test" (cafemocha) task
Warning: string is not a function Use --force to continue.

Aborted due to warnings.
4

1 回答 1

12

默认情况下,堆栈跟踪在 grunt 中是隐藏的。运行 grunt withgrunt --stack以显示它们。

于 2013-08-31T13:48:16.540 回答