2022-09-05 19:28:53 +02:00
|
|
|
// mock all dates to 2020-01-01T00:00:00.000Z
|
|
|
|
// use tk.reset() to use real dates in individual tests
|
|
|
|
const MOCK_DATE = new Date("2020-01-01T00:00:00.000Z")
|
|
|
|
const tk = require("timekeeper")
|
|
|
|
tk.freeze(MOCK_DATE)
|
|
|
|
|
|
|
|
if (!process.env.DEBUG) {
|
|
|
|
global.console.log = jest.fn() // console.log are ignored in tests
|
|
|
|
}
|
2022-10-01 03:54:51 +02:00
|
|
|
|
2023-02-01 12:08:35 +01:00
|
|
|
jest.setTimeout(60000)
|