Skip to content

Commit a64e1a2

Browse files
committed
chore(test): Enable Date instance expectation in overloads test
1 parent 881556e commit a64e1a2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/transformer/descriptor/methods/overloads.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ describe('for overloads', () => {
5454
const properties: InterfaceWithConstructSignatureOverload = createMock<InterfaceWithConstructSignatureOverload>();
5555
expect((new properties(0)).a).toBe(0);
5656
expect((new properties('')).b).toBe('');
57-
// FIXME: Enable after Date PR
58-
// expect((new properties()).c).toBeInstanceOf(Date);
57+
expect((new properties()).c).toBeInstanceOf(Date);
5958
});
6059
});
6160
});

0 commit comments

Comments
 (0)