Skip to content

Commit 7114181

Browse files
cbravobernalclaude
andcommitted
Restore tacocat expectation for null input value rerender
The previous flaky-fix commit changed `null: [ null, '' ]` while splitting the double click. Preact 10.29.1 leaves `input.value` at `'tacocat'` after the toggle pair (same observed behavior as the `undef` row), so revert the matrix entry to match reality. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent dcb008e commit 7114181

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/e2e/specs/interactivity/directive-bind.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ test.describe( 'data-wp-bind', () => {
176176
values: {
177177
false: [ null, 'false' ],
178178
true: [ null, 'true' ],
179-
null: [ null, '' ],
179+
null: [ null, '', null, 'tacocat' ],
180180
undef: [ null, '', null, 'tacocat' ],
181181
emptyString: [ null, '' ],
182182
anyString: [ null, 'any' ],

0 commit comments

Comments
 (0)