reorder_suites
Set the sort order of test suites under a specific parent suite. Provide the parent ID (or null) and an ordered list of suite IDs to define the new sequence.
Instructions
Set the sort order of sibling suites under a given parent. Tip: Call get_project_context or list_suites first to see current suite IDs and order.
Required: parent (parent suite ID, title, or null for root), suite_ids (ordered array of suite IDs) Optional: project_id
Example - reorder root-level suites: { "parent": null, "suite_ids": [5, 3, 8, 1] }
Example - reorder children of "Authentication": { "parent": "Authentication", "suite_ids": [12, 10, 15] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | No | Project ID (optional if TC_DEFAULT_PROJECT is set) | |
| parent | Yes | Parent suite ID, title, or null for root-level suites (required) | |
| suite_ids | Yes | Ordered array of suite IDs representing the desired sort order (required) |