Skip to content

Instantly share code, notes, and snippets.

@0xask3
Created March 1, 2023 10:55
Show Gist options
  • Save 0xask3/66423cfb78bae37db1e539d7fd3324a0 to your computer and use it in GitHub Desktop.
Save 0xask3/66423cfb78bae37db1e539d7fd3324a0 to your computer and use it in GitHub Desktop.
Readable forge coverage report
#Generate coverage report
forge coverage --report lcov
#Remove unwanted files
lcov --remove lcov.info -o lcov.info 'node_modules/*' 'script/*'
#Generate html file
genhtml lcov.info -o ./coverage
#Remove lcov file
rm lcov.info
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment