我正在使用npm模块mochawesome-merge合并使用cypress
执行多个规范文件后创建的不同json输出文件。
按照文档中的建议尝试了以下命令:
const cypress = require('cypress')
const { merge } = require('mochawesome-merge')
const marge = require('mochawesome-report-generator')
cypress.run()
.then(() => {
return merge(options).then(report => marge.create(report, options))
})
其中options
是对象-{ "reportDir" : reportDirLocation}
,它已经在cypress.json
下的reporterOptions
文件中设置了
问题:
merge(options)
不起作用。 console.log(report)
不包含执行的测试信息。因此,html报告为空
欢迎任何输入。谢谢!