URLs now /tools/agent/, /tools/mcp/, /tools/cli/, etc. Co-Authored-By: Virgil <virgil@lethean.io>
339 B
339 B
Go Test Examples
# All tests
core go test
# Specific package
core go test --pkg ./pkg/core
# Specific test
core go test --run TestHash
# With coverage
core go test --coverage
# Race detection
core go test --race
# Short tests only
core go test --short
# Verbose
core go test -v
# JSON output (CI)
core go test --json