test

Execute Go unit tests for specified or all packages.

23|1|Updated Feb 1, 2026
One-click install
npx skills add https://github.com/PeterBooker/veloria --skill test-peterbooker
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test
Source: https://github.com/PeterBooker/veloria/tree/main/.claude/skills/test
Command: npx skills add https://github.com/PeterBooker/veloria --skill test-peterbooker

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps developers quickly verify the correctness of their Go code changes by running unit tests.

Core Features & Use Cases

  • Automated Testing: Executes Go unit tests to catch regressions and ensure code quality.
  • Targeted Testing: Allows running tests for specific packages or with verbose output.
  • Use Case: After modifying a function in the internal/manager package, run /test -v ./internal/manager/... to ensure the changes haven't broken existing functionality.

Quick Start

Run all Go unit tests in the project.

Frequently Asked Questions about test

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run Go unit tests for a specific package?

Run Go unit tests for a specific package by specifying the target path with the verbose flag, such as `/test -v ./internal/manager/...`, to verify code correctness and identify regressions in that directory.

How do I execute all Go unit tests in my project?

Execute all Go unit tests in your project by running the standard test command without specifying a package path, ensuring code integrity across all packages within the Go project.

Can I get verbose output when running Go tests for debugging?

Yes, you can get verbose output when running Go tests by passing the verbose flag, which provides detailed test execution information to help debug regressions and verify code changes.

What is the best way to catch regressions after modifying Go code?

The best way to catch regressions after modifying Go code is to run automated unit tests against the modified package, ensuring your changes have not broken existing functionality and maintaining code quality.

Do I need any external dependencies to run Go unit tests?

No, you do not need external dependencies to run Go unit tests, as the Skill directly executes tests against specified or all packages within the Go project using the standard testing framework.