Stop the tmux session and clean up the temp directory.
()
| 176 | |
| 177 | /** Stop the tmux session and clean up the temp directory. */ |
| 178 | async stop(): Promise<void> { |
| 179 | tmuxStop(this.name) |
| 180 | try { |
| 181 | fs.rmSync(this.workDir, { recursive: true, force: true }) |
| 182 | } catch { |
| 183 | // Ignore cleanup errors |
| 184 | } |
| 185 | } |
| 186 | } |
no test coverage detected