(sessionName: string)
| 44 | |
| 45 | // Capture pane content |
| 46 | async function capturePane(sessionName: string): Promise<string> { |
| 47 | return await tmux(['capture-pane', '-t', sessionName, '-p']) |
| 48 | } |
| 49 | |
| 50 | // Main test function |
| 51 | async function testCLIWithTmux() { |
no test coverage detected