* Runs an it2 CLI command and returns the result.
( args: string[], )
| 34 | * Runs an it2 CLI command and returns the result. |
| 35 | */ |
| 36 | function runIt2( |
| 37 | args: string[], |
| 38 | ): Promise<{ stdout: string; stderr: string; code: number }> { |
| 39 | return execFileNoThrow(IT2_COMMAND, args) |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Parses the session ID from `it2 session split` output. |
no test coverage detected