(ch: string)
| 339 | // under Kitty mode. |
| 340 | describe('TasksBrowserApp — Kitty CSI-u printable input', () => { |
| 341 | const kitty = (ch: string): string => `\u001B[${String(ch.codePointAt(0) ?? 0)}u`; |
| 342 | |
| 343 | it('Kitty-encoded q invokes onCancel', () => { |
| 344 | const onCancel = vi.fn(); |