Skip to content

Instantly share code, notes, and snippets.

View AaronBastian's full-sized avatar

Aaron Eversole AaronBastian

  • Spring Hill, TN
View GitHub Profile
@scriptex
scriptex / jest-date-mock.ts
Last active February 1, 2021 13:37
Jest date mock (in Typescript)
/**
* Mock a date which is created with the `new Date()` constructor.
*
* Usage:
*
* import { onBeforeEach, onAfterEach } from 'FOLDER/jest-date-mock';
*
* describe('', () => {
* beforeEach(onBeforeEach);
* afterEach(onAfterEach);