Skip to content

Instantly share code, notes, and snippets.

@irokhes
Created June 4, 2016 13:22
Show Gist options
  • Save irokhes/2d1e755e4f8eed93fc146fc6dd52f87e to your computer and use it in GitHub Desktop.
Save irokhes/2d1e755e4f8eed93fc146fc6dd52f87e to your computer and use it in GitHub Desktop.
Fake a date in node.js for testing with sinon
clock = sinon.useFakeTimers(new Date(2016,11,1).getTime());
new Date(); //=> return the fake Date 'Sat Nov 01 2016 00:00:00'
clock.restore();
new Date(); //=> will return the real time again (now)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment