원클릭으로
test
Run Go unit tests. Use after code changes to verify correctness.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run Go unit tests. Use after code changes to verify correctness.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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