The Solid render-test harness (src/test/lib/render.ts + effect.ts) was never committed — a global ~/.gitignore_global `lib/` rule silently excluded it, so the opentui-v2 test suite wasn't reproducible from a clean checkout (render.test.tsx imports ./lib/render). Force-add both + add a repo .gitignore negation (!src/test/lib/). render.ts also carries the withKeymap() wrapper the keymap migration needs (view tests mount under a KeymapProvider). 91 pass.
10 lines
162 B
Plaintext
10 lines
162 B
Plaintext
node_modules/
|
|
dist/
|
|
.repos/
|
|
*.frame.txt
|
|
*.ansi
|
|
bun.lockb
|
|
|
|
# the global ~/.gitignore_global `lib/` rule swallows our test harness — re-include it
|
|
!src/test/lib/
|