我们正在使用Cypress(用于报告的分子)进行E2E测试,并且可以正常使用报告。此时的报告显示已通过和失败的测试用例的列表。我有办法排除已经通过的测试吗?想法是仅在测试用例失败时才将结果/报告分发给相关人员。
我们的赛普拉斯配置如下:
{
"reporter": "./node_modules/mochawesome/src/mochawesome.js",
"reporterOptions": {
"reportDir": "cypress/reports/separate-reports",
"overwrite": false,
"html": true,
"json": true
},
"video": false
}