gpt4 book ai didi

javascript - 如何设置 grunt-contrib-nodeunit 输出 JUnit xml?

转载 作者:行者123 更新时间:2023-11-30 05:44:18 25 4
gpt4 key购买 nike

我找不到任何关于如何在 grunt-contrib-nodeunit 模块中设置记者的信息,现在我的 Gruntfile.js 中有这个任务。

nodeunit: {
all: ['nodeunit/**/*.test.js'],
}

如何告诉 grunt 使用带有自定义输出路径的内置 JUnit 报告?

最佳答案

看看代码你根本做不到。但是你可以使用 grunt-shell 这样做:

module.exports = function(grunt) {

grunt.loadNpmTasks('grunt-shell');

grunt.initConfig({
shell:{
nodeunit_with_junit:{
command: './node_modules/nodeunit/bin/nodeunit --reporter junit --output ./junit_ouput tests/*.test.js',
options:{
stdout: true,
stderr: true,
failOnError:false,
warnOnError: true
}
}
}
});

};

然后用 grunt shell:nodeunit_with_junit 运行它。

关于javascript - 如何设置 grunt-contrib-nodeunit 输出 JUnit xml?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18823763/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com