We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 881556e commit a64e1a2Copy full SHA for a64e1a2
test/transformer/descriptor/methods/overloads.test.ts
@@ -54,8 +54,7 @@ describe('for overloads', () => {
54
const properties: InterfaceWithConstructSignatureOverload = createMock<InterfaceWithConstructSignatureOverload>();
55
expect((new properties(0)).a).toBe(0);
56
expect((new properties('')).b).toBe('');
57
- // FIXME: Enable after Date PR
58
- // expect((new properties()).c).toBeInstanceOf(Date);
+ expect((new properties()).c).toBeInstanceOf(Date);
59
});
60
61
0 commit comments