fix inner scroll behavior

This commit is contained in:
2026-08-28 21:58:11 -04:00
parent 74158d75d4
commit 3f0001b0d5
4 changed files with 212 additions and 0 deletions

9
scripts/_hv.ts Normal file
View File

@@ -0,0 +1,9 @@
import { testRender } from "@opentui/solid";
const { ThemeProvider } = await import("../src/context/ThemeContext");
const { PaneRow } = await import("../src/components/PaneRow");
process.env.XDG_CONFIG_HOME = import.meta.dir + "/../.harness/config-home";
import { mkdtempSync } from "node:fs"; import { tmpdir } from "node:os"; import { join } from "node:path";
process.env.XDG_CONFIG_HOME = mkdtempSync(join(tmpdir(), "hv-"));
const setup = (await testRender(
() => React.createElement...
));