Reputation: 314
How to manage cypress results after run?, i see a lot of images and videos are captured in the local repo and of course replaced by new results everytime, so how a run results can be managed effectively and for future references.
Also suggest best test run tools, test management tool for all purposes like, build, test, run and look at the results as a dashboard for cypress other than Jenkins.
Upvotes: 0
Views: 579
Reputation: 3741
I think it depends on what you have in place already. For example: we don't store the whole reports of Cypress (there is no use to it, since we are only interested in the things that fail, not the things that work), we only store the failed screenshots/screencasts. Our tests are executed via Jenkins and the screenshots/screencasts are automatically uploaded by Jenkins to a specific page in Confluence.
We had those systems in place and didn't feel the need to buy a license for Cypress Dashboard.
Upvotes: 1
Reputation: 5854
You want to use Cypress Dashboard. Cypress records and automatically uploads test reports from CI as well as local instance there.
Details on how to setup test recording are here
Upvotes: 1