test
Debug and test Go packages with custom flags using Delve MCP, enabling precise code analysis and troubleshooting in a TypeScript-based environment.
Instructions
Debug tests in a package
Input Schema
Name | Required | Description | Default |
---|---|---|---|
package | No | Package to test (defaults to current directory) | |
testFlags | No | Flags to pass to go test |
Input Schema (JSON Schema)
{
"properties": {
"package": {
"description": "Package to test (defaults to current directory)",
"type": "string"
},
"testFlags": {
"description": "Flags to pass to go test",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}