Usage
Enable coverage with the--coverage flag and point to your OpenAPI spec:
--openapi flag is required when --coverage is set. Coverage runs after
your tests complete and the report is printed to the console.
What Coverage Tracks
The coverage report shows:- Overall coverage percentage — the ratio of tested endpoints to total endpoints in the spec
- Covered endpoints — endpoints that have at least one test request matching the method and path
- Uncovered endpoints — endpoints defined in the spec with no matching test
- Coverage by tag/category — grouped by OpenAPI tags if present