Skip to content

Commit 75e24f8

Browse files
committed
fix-types-test
1 parent e336b25 commit 75e24f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test-types/top-level-expect-namespace.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ expectError(expect(1).toBeLessThanOrEqual());
104104
expectError(expect(1).toBeLessThanOrEqual('10'));
105105

106106
expectType<void>(expect(() => {}).toBeInstanceOf(Function));
107-
expectError(expect(() => {}).toBeInstanceOf('function'));
107+
expectError(expect(() => {}).toBeInstanceOf());
108108

109109
expectType<void>(expect(Number('ten')).toBeNaN());
110110
expectError(expect(Number('10')).not.toBeNaN(true));

0 commit comments

Comments
 (0)