Precise DOM morphing
morphing typescript dom

Update AGENTS.md

+2 -4
+2 -4
AGENTS.md
··· 2 2 - Don’t create a summary document. 3 3 - Running all the tests with `bun run test` is cheap, so do it all the time. Don’t do too much before running tests. You can also run browser tests with `bun run test:browser`. 4 4 - Try to maintain 100% test coverage. Use `bun run test --coverage`. 5 - - I’m using `jj` so you can use that to look at your diff, but please don’t commit unless I ask you to. 6 - - Make sure you leave things in a good state. No diagnostics warnings. No type errors. 7 - - We use tabs for indentation and spaces for alignment 8 - - Never say “you’re absolutely right” 5 + - Make sure you leave things in a good state. No warnings. No type errors. 6 + - We use tabs for indentation and sometimes additional spaces for alignment 9 7 - When writing new tests, put them under `test/new` and use `test` instead of `it`. Try to keep all the setup in the test itself. If you need to share setup between multiple steps, make a function that each test calls.