()
| 473 | } |
| 474 | |
| 475 | const gone = () => |
| 476 | client.pty |
| 477 | .get({ ptyID: id }, { throwOnError: false }) |
| 478 | .then((result) => result.response.status === 404) |
| 479 | .catch((err) => { |
| 480 | debugTerminal("failed to inspect terminal session", err) |
| 481 | return false |
| 482 | }) |
| 483 | |
| 484 | const connectToken = async () => { |
| 485 | const result = await client.pty |
no test coverage detected