Skip to content

Instantly share code, notes, and snippets.

@Saturate
Last active March 18, 2019 12:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Saturate/89af00eea2c668f0eb6668811252c416 to your computer and use it in GitHub Desktop.
Save Saturate/89af00eea2c668f0eb6668811252c416 to your computer and use it in GitHub Desktop.
Mocking Date.prototype.toLocaleString with Jest, as it's not working in jsdom
Date.now = jest.fn(() => 1482363367071);
Date = jest.fn(() => ({
toLocaleString: jest.fn(() => '12.3.2019 13.47.47')
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment