【发布时间】:2021-12-05 12:28:33
【问题描述】:
我已设置 cypress-testrail-accumulative-reporter 用于我的项目。
但是每次创建的测试运行都包含测试轨道案例中存在的所有内容。
我需要的是只使用回归集创建的测试运行。
例如,我有 1000 个案例,只有 10 个是回归的。
当我输入 npx cypress run 测试运行时,应该只创建 10 个案例并填充结果,而不是 1000 个。
你能帮我解决这个问题吗?
"reporter": "cypress-testrail-accumulative-reporter",
"reporterOptions": {
"domain": "domain",
"username": "name",
"password": "pass",
"projectId": 1,
"suiteId": 1,
"allowFailedScreenshotUpload": true,
"runName": "Regression"
【问题讨论】:
标签: testing automated-tests cypress coded-ui-tests testrail