con un clic
test
Run Go unit tests. Use after code changes to verify correctness.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Run Go unit tests. Use after code changes to verify correctness.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Run Go benchmarks and compare results to detect performance regressions. Use before and after performance-related changes.
Run pre-push quality checks (vet + lint + tests with race detector). Use before pushing code.
Run tests with coverage analysis and identify untested code paths. Use to find gaps before releases.
Check and tidy Go module dependencies. Use after adding/removing imports or before releases.
Run go generate to build templ templates and frontend assets. Use after changing templates or CSS/JS.
Run integration tests that require Docker (Postgres, MinIO via testcontainers). Use to validate database and storage behavior.
| name | test |
| description | Run Go unit tests. Use after code changes to verify correctness. |
| disable-model-invocation | false |
| argument-hint | package-path |
Run Go unit tests with optional package targeting and verbose output.
/test - Run all unit tests/test ./internal/repo/... - Run tests in specific package/test -v ./internal/manager/... - Verbose outputRun tests
If $ARGUMENTS specifies a package, use that:
go test -timeout 5m $ARGUMENTS 2>&1
Otherwise, run all packages:
go test -timeout 5m ./... 2>&1
Parse results
Report:
## Test Results
### Passed
- [list of passed tests]
### Failed
- [list of failed tests with error details]
### Summary
- Total: N | Passed: N | Failed: N | Skipped: N
- Duration: Ns
On failure, read the failing test and corresponding source files to understand the failure, then suggest a fix.
-v for verbose output when debugging specific test failures-run TestName to run a single test-short to skip long-running tests during iteration/race-check instead/integration-test instead