我正在使用mocha和babel-cli,我可以使用脚本
运行mocha测试"mocha --compilers js:babel-core/register --recursive"
当我没有使用 babel时,我可以使用脚本生成JSON报告
./node_modules/mocha/bin/mocha -R json> report
有没有人有解决方案(脚本)如何在使用带有mocha的babel时获取json报告
答案 0 :(得分:0)
这是使用带有es6标准代码的babel时获取mocha测试的json报告文件的脚本。
"./node_modules/mocha/bin/mocha -R json> report.json --require babel-core/register --recursive"
package.json文件中的babel依赖项 -
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1"
}