| name | test |
| description | Run the Go test suite for the starbunk-go monorepo or a specific package |
Test Runner
Run tests for the project.
Arguments
$ARGUMENTS - Optional: specific package path (e.g. ./internal/...) or leave blank for all.
Instructions
-
If no argument is provided, run the full test suite:
go test ./...
-
If an argument is provided, run tests for that package:
go test <package-path>
-
Report the test results clearly, highlighting any failures.
-
If tests fail, analyze the output and suggest fixes if the errors are straightforward.