我正在使用 mochawesome 进行柏树测试。
这是我的 cypress.json 文件
{
"viewportWidth": 1440,
"viewportHeight": 800,
"defaultCommandTimeout": 8000,
"reporter": "mochawesome",
"reporterOptions": {
"reportDir": "cypress/reports/mochawesome-report",
"reportFilename": "sample",
"overwrite": false,
"html": true,
"json": true
},
"env": {
"environment": "Stagging"
},
"screenshotsFolder": "cypress/reports/mochawesome-report/assets",
}
当我运行测试时,生成的报告名称为“ sample.html ”,这是预期的,因为我已将报告标题定义为cypress.json文件中的示例。
现在我希望根据测试套件名称生成的每个报告都有一个唯一的名称。
所以我在执行每个测试之前使用了cypress 事件' test:before:run
'并将cypress.jsonreportFilename
中的设置为测试套件名称,示例代码如下
Cypress.on("test:before:run", (test, runnable) => {
console.log(Cypress.config("reporterOptions").reportFilename);
const suiteTitle = runnable.parent.title;
Cypress.config({
"reporterOptions":{
"reportFilename": suiteTitle
}
});
const reportFileName = Cypress.config("reporterOptions").reportFilename;
console.log(reportFileName);
});
我看到reportFilename
配置文件中已成功更改为测试套件名称
但我的报告仍保存为“sample.html”
为什么我的报告仍然保存为 sample.html ,而不是我的测试套件名称?
你能帮我解决这个问题吗?