Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 504 Bytes

test-coverage.md

File metadata and controls

15 lines (8 loc) · 504 Bytes

Test Coverage

Code (or test) coverage is a report that shows which parts of the code have been run in some automated tests, making it useful to find untested parts of a codebase.

Tools for generating coverage reports include:

  • Istanbul

  • many test libraries like Jest have

    built-in support to generate test coverage reports

References