Skip to content

Commit 4af4546

Browse files
committed
Restore test
1 parent a888caa commit 4af4546

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/transform.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ describe.each`
3333
${'Binary'} | ${'LogicalExpression'} | ${' ( ( ( ( a ) ) && ( ( b ) ) ) ) '} | ${true} | ${true} | ${true} | ${true}
3434
${'Binary'} | ${'LogicalExpression'} | ${' ( ( ( ( a ) ) || ( ( b ) ) ) ) '} | ${true} | ${true} | ${true} | ${true}
3535
${'Binary'} | ${'LogicalExpression'} | ${' ( ( ( ( a ) ) ?? ( ( b ) ) ) ) '} | ${true} | ${true} | ${true} | ${true}
36+
${'Binary'} | ${'AssignmentExpression'} | ${' ( ( a . b = ( ( 1 ) ) ) ) '} | ${true} | ${false} | ${false} | ${false}
3637
${'Binary'} | ${'AssignmentExpression'} | ${' ( ( a = ( ( 1 ) ) ) ) '} | ${true} | ${false} | ${false} | ${false}
3738
${'Binary'} | ${'AssignmentExpression'} | ${' a [ b ] = 1 '} | ${true} | ${true} | ${true} | ${true}
3839
${'Binary'} | ${'AssignmentExpression'} | ${' ( ( a ??= ( ( 1 ) ) ) ) '} | ${true} | ${false} | ${false} | ${false}

0 commit comments

Comments
 (0)