File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 5959 "superjson" : " ^2.2.6" ,
6060 "temporal-polyfill" : " ^0.3.0"
6161 }
62- }
62+ }
Original file line number Diff line number Diff line change @@ -511,12 +511,12 @@ describe(`evaluators`, () => {
511511 // They are different object instances but represent the same moment
512512 const date1 = new Date ( `2024-01-15T10:30:45.123Z` )
513513 const date2 = new Date ( `2024-01-15T10:30:45.123Z` )
514-
514+
515515 // Verify they are different object references
516516 expect ( date1 ) . not . toBe ( date2 )
517517 // But they have the same time value
518518 expect ( date1 . getTime ( ) ) . toBe ( date2 . getTime ( ) )
519-
519+
520520 const func = new Func ( `eq` , [ new Value ( date1 ) , new Value ( date2 ) ] )
521521 const compiled = compileExpression ( func )
522522
@@ -528,7 +528,7 @@ describe(`evaluators`, () => {
528528 it ( `handles eq with Date objects with different times` , ( ) => {
529529 const date1 = new Date ( `2024-01-15T10:30:45.123Z` )
530530 const date2 = new Date ( `2024-01-15T10:30:45.124Z` ) // 1ms later
531-
531+
532532 const func = new Func ( `eq` , [ new Value ( date1 ) , new Value ( date2 ) ] )
533533 const compiled = compileExpression ( func )
534534
You can’t perform that action at this time.
0 commit comments