(error: string, message: string, status: number)
| 156 | |
| 157 | const PTY_ID_RE = /^[a-zA-Z0-9_-]+$/; |
| 158 | const MIN_PTY_COLS = 2; |
| 159 | const MAX_PTY_COLS = 500; |
| 160 | const MIN_PTY_ROWS = 2; |
| 161 | const MAX_PTY_ROWS = 200; |
| 162 | const WORKSPACE_TERMINAL_ENV = { |
| 163 | // Shell startup files may replace inherited PS1, so reapply it before each prompt. |
no test coverage detected