test_workflow
Create and enhance test coverage by defining tasks, target files, test types, and frameworks using structured workflows for reliable and auditable results.
Instructions
Start a focused workflow for writing or improving test coverage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | Additional context (optional) | |
task | Yes | Description of what to test or test coverage to add |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"description": "Additional context (optional)",
"properties": {
"coverageGoals": {
"description": "Specific coverage goals or scenarios to test",
"items": {
"type": "string"
},
"type": "array"
},
"targetFiles": {
"description": "Files that need test coverage",
"items": {
"type": "string"
},
"type": "array"
},
"testFramework": {
"description": "Testing framework being used (e.g., jest, mocha, pytest)",
"type": "string"
},
"testType": {
"description": "Type of tests to write",
"enum": [
"unit",
"integration",
"e2e",
"all"
],
"type": "string"
}
},
"type": "object"
},
"task": {
"description": "Description of what to test or test coverage to add",
"type": "string"
}
},
"required": [
"task"
],
"type": "object"
}