View as Markdown

Jest Integration with CI Insights

Report your test results from Jest tests to CI Insights


This guide shows how to generate JUnit reports from your Jest tests and upload them to CI Insights using a GitHub Actions workflow.

Generate a JUnit Report with Jest

Section titled Generate a JUnit Report with Jest

Jest has built-in support for JUnit XML reports. You can configure Jest to output JUnit reports by updating your Jest configuration or using command-line options.

Add the following to your jest.config.js or package.json:

jest.config.js
module.exports = {
reporters: [
'default',
['jest-junit', {
outputDirectory: '.',
outputName: 'junit.xml'
}]
]
};

First, install the jest-junit reporter:

Terminal window
npm install --save-dev jest-junit
Terminal window
npx jest --reporters=default --reporters=jest-junit

You can also set the output file location:

Terminal window
JEST_JUNIT_OUTPUT_DIR=. JEST_JUNIT_OUTPUT_NAME=junit.xml npx jest --reporters=default --reporters=jest-junit

Update Your GitHub Actions Workflow

Section titled Update Your GitHub Actions Workflow

After generating the JUnit report, add a step to upload the results to CI Insights using the mergifyio/gha-mergify-ci action.

For example, in your workflow file:

- name: Run Jest Tests and Generate JUnit Report
continue-on-error: true
env:
JEST_JUNIT_OUTPUT_DIR: .
JEST_JUNIT_OUTPUT_NAME: junit.xml
run: npx jest --reporters=default --reporters=jest-junit
- name: Mergify CI Upload
  if: success() || failure()
  uses: mergifyio/gha-mergify-ci@v8
  with:
    token: ${{ secrets.MERGIFY_TOKEN }}
    report_path: junit.xml
    test_step_outcome: ${{ steps.tests.outcome }}

Key Points:

  • if: success() || failure(): Runs the upload step even if tests fail, ensuring CI Insights has the full report.
  • report_path: junit.xml: Points to where your JUnit file is located. Make sure it matches the path you set in your CI job.
  • test_step_outcome: ${{ steps.tests.outcome }}: Passes the test runner step's outcome so Mergify can detect silent failures where the runner crashed but the JUnit report appears clean. Add an id (such as tests) to your test runner step and update the steps.<id>.outcome reference to match.

If you use a job matrix in your workflow (e.g., to test across multiple versions), ensure you set the job_name input (or MERGIFY_JOB_NAME environment variable) so CI Insights can properly distinguish reports for each matrix job.

For example, with:

jobs:
  example_matrix:
    strategy:
      matrix:
        version: [10, 12, 14]

Your upload step should look like:

- name: Mergify CI Upload
  if: success() || failure()
  uses: mergifyio/gha-mergify-ci@v8
  with:
    job_name: example_matrix (${{ matrix.version }})
    token: ${{ secrets.MERGIFY_TOKEN }}
    report_path: junit.xml
    test_step_outcome: ${{ steps.tests.outcome }}

In order to benefit from CI Insights Quarantine, you need to add continue-on-error: true in your GitHub Actions step that executes your tests and generates the JUnit file. The step running the gha-mergify-ci action will determine the success or failure conclusion, considering quarantined tests.

You should also pass test_step_outcome: ${{ steps.tests.outcome }} to the step that runs mergifyio/gha-mergify-ci (where tests is the id of your test runner step) to detect silent failures where the test runner crashed but the JUnit report appears clean. Without this input, a crash that produces a partial or empty report could be mistakenly treated as a success.

Verify and Review in CI Insights

Section titled Verify and Review in CI Insights

After pushing these changes:

  1. Your GitHub Actions workflow will execute your Jest tests.
  2. A JUnit report (junit.xml) is generated.
  3. The Mergify CI action uploads the report to CI Insights.

You can then review your test results, including any failures or flaky tests, directly in the CI Insights dashboard.

  • Jest Configuration: Ensure jest-junit is properly installed and configured in your Jest setup.
  • The CLI provides information about the upload. Check the logs in GitHub Actions.
  • File Paths: Double-check that the output file matches the path used in report_path.
  • 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.

Was this page helpful?