I have been using cypress for E2E testing and wanted to create a full coverage report, to generate a complete coverage report you are required to run all cypress tests together. The first test calls the task resetCoverage
in the start and saveCoverage
at the end of the test and every test that follows with coverage task combineCoverage
at the end.
The issue I am facing is running all the tests together hangs the system as well as fails due to timeout errors, it runs perfectly when running standalone tests. I wanted to know if there is a way to create a full report by running the cypress tests manually one by one without every test resetting the previous coverage report but rather combing the report.