test_specific
Run a targeted test by specifying its name and path using HooksMCP's simplified YAML configuration, enabling quick and precise test execution in development workflows.
Instructions
Run a specific test by name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
TEST_NAME | Yes | Name of the test to run | |
TEST_PATH | No | Path to test file or directory |
Input Schema (JSON Schema)
{
"properties": {
"TEST_NAME": {
"description": "Name of the test to run",
"type": "string"
},
"TEST_PATH": {
"description": "Path to test file or directory",
"type": "string"
}
},
"required": [
"TEST_NAME"
],
"type": "object"
}