Generate API test + edge cases
generate_testsGenerate comprehensive test plans covering happy-path, edge, negative, and security cases for all discovered API endpoints. Outputs tests.json without executing tests.
Instructions
Generates a test plan (happy-path, edge, negative, and security cases) for every discovered endpoint, based on its HTTP method and parameters. Writes tests.json. Does not execute anything.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Project root path. | |
| baseUrl | No | Base URL of the running server, e.g. http://localhost:3000. | |
| headers | No | Extra headers applied to every request. Supports ${ENV_VAR}. | |
| bearerToken | No | Bearer token for Authorization header. Supports ${ENV_VAR}. |