testing-go-code

Installation
SKILL.md

Testing Go Code

All commands run from the Go module root (installer/).

Unit Tests

task test                       # Run all tests with race detection
task test -- -run TestName      # Run specific test(s)
task test -- -short             # Skip integration tests

For test conventions (naming, assertions, table-driven patterns, mock usage), see the writing-go-tests skill.

Coverage

task cov

Runs tests with coverage and opens an HTML report in the browser.

Benchmarks

task bench

Runs all benchmarks with memory allocation stats.

Combined Check

task check

Runs tests + lint in sequence. Use before committing.

Mock Regeneration

mockery

Run from the module root with no arguments after adding or modifying interfaces. Configuration is in .mockery.yml. Never edit generated mock files (*_mock.go) manually.

Related skills

More from mrpointer/dotfiles

Installs
1
GitHub Stars
2
First Seen
Apr 7, 2026