(ms: number)
| 30 | |
| 31 | // Helper to wait for async operations |
| 32 | async function wait(ms: number): Promise<void> { |
| 33 | return new Promise((resolve) => setTimeout(resolve, ms)); |
| 34 | } |
| 35 | |
| 36 | describe("Regular Characters", () => { |
| 37 | it("should pass through regular characters immediately", () => { |