# Code Coverage

Code coverage is a measure that indicates the percentage of a codebase that is tested by automated tests. It helps ensure that the tests cover a significant portion of the code, identifying untested parts and potential bugs.

<figure><img src="https://813988662-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FeCZyG1kSmV84geZ9Ws6s%2Fuploads%2FGFkfzUEOPJudIJE2obrz%2FScreenshot%202025-06-10%20at%2012.44.51%E2%80%AFAM.png?alt=media&#x26;token=29918395-092c-453a-bf44-df9abbb0c42b" alt=""><figcaption></figcaption></figure>

[Guide to set up code coverage for your account](https://typo.gitbook.io/typo-help-docs/configurations/code-coverage)

### Code coverage report

* **Total Coverage:** The percentage of the codebase covered by automated test cases.
* **Uncovered Lines:** The number of lines without any associated test cases.
* **Uncovered Conditions:** The number of conditions without any associated test cases.
* **Overall Tracked Lines:** The total number of lines present in your codebase.
* **Overall Tracked Conditions:** The total number of conditions present in your codebase.
* **Covered Lines:** The number of lines covered by test cases.
* **Covered Conditions:** The number of conditions with test cases written for them.
* **Last Analyzed:** The date when the code was last analyzed, helping you understand the recency of the coverage report.
* **Repo Coverage Summary:** Displays coverage at the repository level, highlighting lines that lack tests.

### PR level coverage

This section shows the coverage for each Pull Request, allowing you to see the impact of each PR on your overall code coverage.<br>

<br>
