( session: IsolatedTmuxSession, )
| 157 | } |
| 158 | |
| 159 | export function destroyIsolatedTmuxSession( |
| 160 | session: IsolatedTmuxSession, |
| 161 | ): void { |
| 162 | try { |
| 163 | runTmux(session.socketName, ['kill-server']) |
| 164 | } catch { |
| 165 | // Best-effort cleanup for tests. |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | export function capturePane( |
| 170 | session: IsolatedTmuxSession, |
no test coverage detected