Cypress Integration with CI Insights
Report your test results from Cypress to CI Insights
This guide shows how to configure Cypress to produce JUnit reports and upload them to CI Insights within a GitHub Actions workflow.
1. Generate a JUnit Report with Cypress
Section titled 1. Generate a JUnit Report with CypressBy default, Cypress doesn’t generate JUnit-format test results. You need to
enable it in your cypress.config.ts
file.
This is documenteded on Cypress website.
The best way to do this is to leverage cypress-multi-reporters
so you can
both have JUnit generated while keeping the standard output.
-
Add
cypress-multi-reporters
to your package file, e.g.,npm install --save-dev cypress-multi-reporters mocha-junit-reporter
. -
Create a
reporter-config.json
at the top of your repository with this configuration:{ "reporterEnabled": "spec, mocha-junit-reporter", "mochaJunitReporterReporterOptions": { "mochaFile": "cypress/results/junit-[hash].xml" } }
2. Update Your GitHub Actions Workflow
Section titled 2. Update Your GitHub Actions WorkflowOnce you have the JUnit file produced by Cypress, add a step to upload these
results to CI Insights via the mergifyio/gha-mergify-ci
action.
In the workflow file where Cypress is launched, after running npm run test:cypress
(or similar), include a step like:
- name: Mergify CI Upload
if: success() || failure()
uses: mergifyio/gha-mergify-ci@v4
with:
token: ${{ secrets.MERGIFY_TOKEN }}
report_paths: cypress/results/junit*.xml
Key Points:
-
if: success() || failure()
: Runs the upload step even if tests fail, ensuring CI Insights has the full report. -
report_paths: src/junit.xml
: Points to where your JUnit file is located. Make sure it matches theoutputFile
path you set in Cypress (e.g.,./cypress/results/junit-*.xml
).
3. Verify and Review in CI Insights
Section titled 3. Verify and Review in CI InsightsAfter pushing these changes:
- Your GitHub Actions workflow will run tests with Cypress.
- Cypress generates JUnit files.
- The Mergify CI action uploads that file to CI Insights.
You can then see your test results, including failures and flaky tests, directly in the CI Insights dashboard.
Troubleshooting Tips
Section titled Troubleshooting Tips-
File Paths: Double-check that
mochaFile
in Cypress matches the path used inreport_paths
. -
Permissions: Make sure the
MERGIFY_TOKEN
is valid and setup in your GitHub Actions secrets as explained in the docs. -
Workflow Conditions: If your step is not running, confirm the if condition is actually triggered in your job.