forge coverage
NAME
forge-coverage - Displays which parts of your code are covered by tests.
SYNOPSIS
forge coverage
[options]
DESCRIPTION
Displays which parts of your code are covered by tests.
Options
Report Options
--report
allows you to specify the report type to use for coverage. This flag can be used multiple times.
It has three different options and is set to summary
by default.
summary
Outputs a chart showing what percentage of your code is covered by tests.
lcov
Creates a lcov.info file containing your coverage data in the root of your project's directory.
debug
Outputs lines describing the location of uncovered code.
Common Options
-h
--help
Prints help information.
Optimization Option
--ir-minimum
allows you to run the coverage with via-ir
enabled for the "minimum amount of optimization" necessary.
EXAMPLES
-
View summarized coverage:
forge coverage
-
Create lcov file with coverage data:
forge coverage --report lcov
-
Output uncovered code locations:
forge coverage --report debug