(executionMode: "worker" | "inline")
| 22 | } |
| 23 | |
| 24 | function inlineConfig(executionMode: "worker" | "inline") { |
| 25 | return { |
| 26 | executionMode, |
| 27 | fpsCap: 60, |
| 28 | maxEventBytes: 1024, |
| 29 | screen: { mode: "inline", inlineRows: 6 }, |
| 30 | } as const; |
| 31 | } |
| 32 | |
| 33 | for (const executionMode of ["worker", "inline"] as const) { |
| 34 | test(`scrollback: ${executionMode} path commits drawlist bytes`, async () => { |
no outgoing calls
no test coverage detected