DEV Community

Cover image for How to Detect Low Test Coverage Files in Jest
Wes Nishio for GitAuto

Posted on โ€ข Originally published at gitauto.ai

How to Detect Low Test Coverage Files in Jest

How to Detect Low Test Coverage Files in Jest (JavaScript/TypeScript)

Through observing our customers' behavior, we've noticed a common challenge when teams want to improve their test coverage: identifying which files to tackle first. Without a clear overview of low-coverage files, developers often resort to randomly selecting files or relying on gut feelings. This initial hurdle of "where do we even start?" can significantly slow down or even halt test coverage initiatives, often leading teams to abandon the task entirely.

That's why we're introducing this coverage dashboard. It provides an instant, clear view of which files need attention, eliminating the guesswork from test coverage improvement. In this guide, we'll show you how to set up automated test coverage reporting for your Jest (JavaScript/TypeScript) project and use GitAuto to improve coverage systematically.

TL;DR - What's the story?

  1. Prerequisites
  2. Setting Up GitHub Actions
  3. Viewing Coverage Reports
  4. Creating Issues for Low Coverage
  5. Automating Coverage Improvement

1. Prerequisites

Before we begin, ensure you have:

  • A JavaScript/TypeScript project with Jest hosted on GitHub
  • GitHub Actions enabled in your repository
  • GitAuto installed in your repository

2. Setting Up GitHub Actions

First, let's set up GitHub Actions to run tests and generate coverage reports. Create a workflow file in your .github/workflows/ directory (the file name can be anything, but we'll use jest.yml in this example):

GitHub Actions Workflow Setup

Key points in this configuration:

  • jest --coverage --coverageReporters="lcov" generates the coverage report
    • The --coverageReporters="text" flag is optional but useful for seeing coverage summary in the console and GitHub Actions logs
    • If your package.json has "test": "jest", you can also use npm test -- --coverage --coverageReporters="lcov". -- is used to pass flags to the jest command from npm
  • The report is uploaded as an artifact named coverage-report (any name containing "coverage" is fine)
  • We specify the exact file path coverage/lcov.info to upload only this file (don't change the file name or upload the entire directory)

3. Viewing Coverage Reports

Once your workflow runs successfully:

Successful Test Run

Successful Artifact Upload

GitAuto will automatically process the coverage reports here:

Coverage Dashboard

The coverage data updates automatically whenever your GitHub Actions workflow runs. In this example configuration, that happens when:

  • You push to any branch except master (e.g., when pushing your feature branch for a pull request)
  • You push additional commits to an existing pull request
  • You manually trigger the workflow from the GitHub Actions page using "workflow_dispatch"

This ensures you always see the latest coverage information as your code evolves.

4. Creating Issues for Low Coverage

From the coverage dashboard, you can:

  1. View files with low test coverage
  2. Create GitHub issues for specific files
  3. Assign issues to GitAuto for automated improvement

Selecting Files for Coverage Improvement

Creating Issues from Actions Menu

Successfully Created Issues

After issues are created, the file names become clickable links. Clicking these links takes you to the corresponding GitHub issues:

Created Issue Example

Issues List View

You can create issues either:

  • One by one for targeted improvement
  • In bulk for systematic coverage enhancement

Theoretically, you could create issues for all low-coverage files at once and have GitAuto generate pull requests for all of them simultaneously. While this would consume a significant number of credits, it means you could potentially improve your test coverage from 0% to nearly 100% in a single day - just be mindful of your credit usage!

5. Automating Coverage Improvement

After creating issues and assigning them to GitAuto, GitAuto will:

  1. Analyze the code in files with low coverage
  2. Create pull requests with appropriate test cases
  3. Run the tests to verify coverage improvement

Each time the workflow runs, new coverage data is collected and processed, allowing you to track improvements over time.

Next Steps

Now that you have automated coverage reporting set up, you can:

  • Monitor coverage trends over time
  • Identify critical areas needing testing
  • Let GitAuto handle the creation of test cases
  • Review and merge the generated test cases

For more examples of how GitAuto can help with testing, check out our guides on adding unit tests and widget tests.

Questions or feedback? Contact us at info@gitauto.com.

Image of Timescale

๐Ÿ“Š Benchmarking Databases for Real-Time Analytics Applications

Benchmarking Timescale, Clickhouse, Postgres, MySQL, MongoDB, and DuckDB for real-time analytics. Introducing RTABench ๐Ÿš€

Read full post โ†’

Top comments (0)

๐Ÿ‘‹ Kindness is contagious

Engage with a wealth of insights in this thoughtful article, valued within the supportive DEV Community. Coders of every background are welcome to join in and add to our collective wisdom.

A sincere "thank you" often brightens someoneโ€™s day. Share your gratitude in the comments below!

On DEV, the act of sharing knowledge eases our journey and fortifies our community ties. Found value in this? A quick thank you to the author can make a significant impact.

Okay