标签: mocha
我想用一个报告文件(xunit)运行多个测试文件。问题是,我想运行shell / python脚本,在测试文件运行之间重新配置我的测试平台。
这可行,但没有shell脚本 mocha script1.js script2.js -R xunit
我想: mocha script1 -R xunit ./myscript.sh mocha script3 -R xunit
但我希望script1和脚本2的输出是单个报告。
答案 0 :(得分:0)
Mocha对glob patterns有很好的支持,在这种情况下,您应该可以做到:
mocha ./script* -R xunit