Capture and auto-save to the session logs directory with a label.
(label: string, waitSeconds?: number)
| 153 | |
| 154 | /** Capture and auto-save to the session logs directory with a label. */ |
| 155 | async captureLabeled(label: string, waitSeconds?: number): Promise<string> { |
| 156 | return tmuxCapture(this.name, { waitSeconds, label }) |
| 157 | } |
| 158 | |
| 159 | /** |
| 160 | * Poll until the terminal output contains the given text. |
nothing calls this directly
no test coverage detected