我试过下面的代码
mocha -R spec test/**/*_test.js > report
假设任何测试用例都失败了它不会登录到’report’文件.请建议记录测试报告的最佳方法.
mocha -R spec test/**/*_test.js > report 2>&1
编辑:如果您希望将内容发送到文件和控制台:
mocha -R spec test/**/*_test.js 2>&1 | tee report