test(transaction): add interleaved history isolation coverage

This commit is contained in:
Ryan Di
2026-04-14 16:43:00 +10:00
parent 226a6eef0a
commit 5cd609cea7
3 changed files with 533 additions and 1 deletions
+4 -1
View File
@@ -105,7 +105,10 @@ const collectTouchedProps = (
continue;
}
if (
!isLedgerValueEqual(getElementProp(before, key), getElementProp(after, key))
!isLedgerValueEqual(
getElementProp(before, key),
getElementProp(after, key),
)
) {
touchedProps.add(key);
}