* Send input to the CLI using bracketed paste mode. * Standard send-keys doesn't work with OpenTUI - see tmux.knowledge.md
(sessionName: string, text: string)
| 84 | * Standard send-keys doesn't work with OpenTUI - see tmux.knowledge.md |
| 85 | */ |
| 86 | async function sendCliInput(sessionName: string, text: string): Promise<void> { |
| 87 | await tmux([ |
| 88 | 'send-keys', |
| 89 | '-t', |
| 90 | sessionName, |
| 91 | '-l', |
| 92 | `\x1b[200~${text}\x1b[201~`, |
| 93 | ]) |
| 94 | } |
| 95 | |
| 96 | describe.skipIf(!tmuxAvailable || !sdkBuilt)( |
| 97 | 'Re-render Performance Tests', |
no test coverage detected