Files
relspecgo/.claude/commands/coverage.md
Hein b9650739bf
Some checks are pending
CI / Test (1.23) (push) Waiting to run
CI / Test (1.24) (push) Waiting to run
CI / Test (1.25) (push) Waiting to run
CI / Lint (push) Waiting to run
CI / Build (push) Waiting to run
init
2025-12-16 13:12:43 +02:00

372 B

description
description
Generate test coverage report

Generate and display test coverage for RelSpec:

  1. Run go test -cover ./... to get coverage percentage
  2. If detailed coverage is needed, run go test -coverprofile=coverage.out ./... and then go tool cover -html=coverage.out to generate HTML report

Show coverage statistics and identify areas needing more tests.