* Helper functions.
()
| 30 | * Helper functions. |
| 31 | */ |
| 32 | async function resetMouseModes(): Promise<void> { |
| 33 | await ctx.proxy.write('\x1b[?9l\x1b[?1000l\x1b[?1001l\x1b[?1002l\x1b[?1003l'); |
| 34 | await ctx.proxy.write('\x1b[?1005l\x1b[?1006l\x1b[?1015l'); |
| 35 | } |
| 36 | |
| 37 | async function getReports(encoding: string): Promise<any[]> { |
| 38 | const reports: any = await ctx.page.evaluate(`window.calls`); |
no test coverage detected