Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save egor-smirnov/153dc629f76b4e69012eaf296a8cc8ff to your computer and use it in GitHub Desktop.

Select an option

Save egor-smirnov/153dc629f76b4e69012eaf296a8cc8ff to your computer and use it in GitHub Desktop.
Jest Mocking Moment to *always* be utc for tests
jest.mock('moment', () => {
const moment = require.requireActual('moment');
return moment.utc;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment