run_converge
Run iterative test rounds to close coverage gaps and failed scenarios until pass-rate and gap thresholds are met, then return results and open the final HTML report.
Instructions
Iterative coverage: runs the full baseline suite, then automatically runs follow-up rounds targeting coverage gaps and failed scenarios until pass rate and gap thresholds are met (or max rounds reached). Use for "keep testing until coverage is good". Returns results across all rounds and opens the final HTML report.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Base URL of the running application (e.g. http://localhost:3000). | |
| mode | No | fast = quick heuristic scan. deep = full feature extraction with dialogs and CRUD detection. | deep |
| headed | No | Show the browser window during testing. Defaults to headless (false) when used via MCP. Set true to watch the browser. | |
| codebase_path | No | Absolute path to the project root directory. Defaults to the current working directory. | |
| target_pass_rate | No | Stop when last batch pass rate reaches this 0–1 (default 0.92). | |
| max_followup_rounds | No | Max extra rounds after baseline (default 4). | |
| max_high_severity_gaps | No | Stop when critical+important gaps <= this (default 2). |