答案 0 :(得分:3)
最简单的方法是修改helper.js中mocha的default reporter
const mocha = require("mocha");
mocha.reporters.Base.symbols.ok = "[PASS]";
mocha.reporters.Base.symbols.err = "[FAIL]";
{
...
"scripts": {
...
"test": "mocha --require helpers.js"
}
}
您也可以使用其他记者https://mochajs.org/#reporters
答案 1 :(得分:0)
在karma.conf.js上更改成功标记
添加这些选项:
module.exports = function(config) {
config.set({
frameworks: ['jasmine'],
// reporters configuration
reporters: ['mocha'],
// reporter options
mochaReporter: {
symbols: {
success: '+',
info: '#',
warning: '!',
error: 'x'
}
}
有关更多信息,请使用此链接: enter link description here
这将生成如下报告:
spec name
+ first test
+ second test
+ third test
而不是带有奇怪的复选标记符号的默认值:
spec name
√ first test
√ second test
√ third test