For test purposes I need to mock jwt-decode library. I use it as follows:
const decodedToken: { exp: number } = jwt_decode(token);
And then in tests tried the following and got errors like below:
jest.mock('jwt-decode');
TypeError: Cannot read property 'exp' of undefined
jest.mock('jwt-decode', () => ({
exp: 123,
}));
TypeError: (0 , _jwtDecode.default) is not a function
The issue is with the second argument of jest.mock
. In your example, it is a function that returns an object:
jest.mock('jwt-decode', () => ({ ... }))
but as the property you are trying to mock is the default export of the module, the argument needs to be a function that returns a function that returns an object:
jest.mock('jwt-decode', () => () => ({ ... }))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With