Skip to content

Instantly share code, notes, and snippets.

@kephin
Created March 22, 2019 06:22
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 kephin/5178ddf9d0c720f79a50389535ed78f8 to your computer and use it in GitHub Desktop.
Save kephin/5178ddf9d0c720f79a50389535ed78f8 to your computer and use it in GitHub Desktop.
Mock Date.now
// mock Date.now
const realDateNow = Date.now
Date.now = jest.fn(() => 11421423523)
// set back
Date.now = realDateNow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment