12

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

heisenberg7584
  • 563
  • 2
  • 10
  • 30

1 Answers1

17

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', () => () => ({ ... }))
A Jar of Clay
  • 5,622
  • 6
  • 25
  • 39