fix typecheck error in jest addon

This commit is contained in:
Jeppe Reinhold 2022-11-16 14:22:28 +01:00
parent 56777b9b5d
commit c2b8465b3a

View File

@ -27,7 +27,6 @@ describe('defineJestParameter', () => {
});
test('returns null if filename is a module ID that cannot be inferred from', () => {
// @ts-expect-error (Converted from ts-ignore)
expect(defineJestParameter({ fileName: 1234 })).toBeNull();
});
});