(raw: string | undefined)
| 401 | } |
| 402 | |
| 403 | function parseRequestTimeoutFlag(raw: string | undefined): number | undefined { |
| 404 | if (raw === undefined) return undefined; |
| 405 | const n = Number(raw); |
| 406 | if (!Number.isFinite(n) || n <= 0) return undefined; |
| 407 | return Math.round(n * 1000); |
| 408 | } |
| 409 | |
| 410 | const SETUP_DESCRIPTION = |
| 411 | 'Set up TestSprite: configure your API key and install the verification skill for your coding agent'; |
no outgoing calls
no test coverage detected