报告中有这些数据。但无法形象化
这些是生成的报告和 JSON 数据。
您可以使用 HTML 报告而不是 JSON 输出,在您的 codecept.conf.js 中添加以下配置:
将 Mochawesome 助手添加到助手中:
helpers: {
Mochawesome: {
"uniqueScreenshotNames": "true",
"disableScreenshots" : "false"
}
}
并将 {"reportDir": "output"} 添加到 mocha 配置中,如下所示:
mocha: {
"reporterOptions": {
"codeceptjs-cli-reporter": {
"stdout": "-",
"options": {
"verbose": true,
"steps": true,
}
},
"mocha-junit-reporter": {
"stdout": "./output/console.log",
"options": {
"mochaFile": "./output/result.xml"
}
},
"reportDir": "output",
"inlineAssets": true,
"reporter": "mochawesome"
}
}