Skip to content

Commit 79e9e95

Browse files
committed
Add explicit typing in tests to fix ts-node
1 parent 0f84670 commit 79e9e95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

b+tree.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ describe('simpleComparator with Date', () =>
8282
dateB,
8383
null,
8484
];
85-
testComparison<Date>(simpleComparator, [], values, [[dateA, dateA2]]);
85+
testComparison<Date|null>(simpleComparator, [], values, [[dateA, dateA2]]);
8686
});
8787

8888
describe('simpleComparator arrays', () =>

0 commit comments

Comments
 (0)