Skip to content

Instantly share code, notes, and snippets.

@vcapretz
Created November 17, 2021 12:43
Show Gist options
  • Save vcapretz/2d25e450780e575486604e95f651957a to your computer and use it in GitHub Desktop.
Save vcapretz/2d25e450780e575486604e95f651957a to your computer and use it in GitHub Desktop.
mocking dates with `jest` and `mockdate`
beforeEach(() => {
Mockdate.set('2021-06-27T21:32:09.419Z');
});
afterEach(() => {
Mockdate.reset();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment