Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/dev/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@ The repo uses:
- golden tests for drawlists/layout/routing where byte-level stability matters
- fuzz-lite tests for binary parsers (bounded, never-throw)

## Reconciliation Hardening Matrix

Reconciliation edge-cases are covered by dedicated runtime suites:

- `packages/core/src/runtime/__tests__/reconcile.keyed.test.ts`
- `packages/core/src/runtime/__tests__/reconcile.unkeyed.test.ts`
- `packages/core/src/runtime/__tests__/reconcile.mixed.test.ts`
- `packages/core/src/runtime/__tests__/reconcile.composite.test.ts`
- `packages/core/src/runtime/__tests__/reconcile.deep.test.ts`

These suites lock deterministic behavior for keyed reorder/insert/remove, unkeyed grow/shrink,
mixed keyed+unkeyed slots, `defineWidget` hook/state persistence, and deep-tree reconciliation.

Related CI gates:

- [Perf Regressions](./perf-regressions.md)
Expand Down
Loading
Loading