* `test create` text-mode rendering. JSON-mode callers (the agent * surface) get the wire shape verbatim via `out.print`; text mode is * the human surface — one line per field, no shell-incompatible chars.
(response: CliCreateTestResponse)
| 920 | * the human surface — one line per field, no shell-incompatible chars. |
| 921 | */ |
| 922 | function renderCreateText(response: CliCreateTestResponse): string { |
| 923 | return [ |
| 924 | `testId ${response.testId}`, |
| 925 | `type ${response.type}`, |
| 926 | `codeVersion ${response.codeVersion}`, |
| 927 | `createdAt ${response.createdAt}`, |
| 928 | ].join('\n'); |
| 929 | } |
| 930 | |
| 931 | /** |
| 932 | * §6.X / M3.2 piece-6 — response from `PUT /tests/{id}/plan-steps`. |
no outgoing calls
no test coverage detected