Created
March 20, 2020 09:15
-
-
Save washingtonsoares/9de344bcf020c36e573e9801b19e0684 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import dayjs from 'dayjs'; | |
jest.mock("dayjs", () => { | |
const format = jest.fn(() => '02:58:33'); | |
return jest.fn().mockImplementation(() => ({ | |
format | |
})) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment