import { mocks } from "@budibase/backend-core/tests" // mock all dates to 2020-01-01T00:00:00.000Z // use tk.reset() to use real dates in individual tests const tk = require("timekeeper") tk.freeze(mocks.date.MOCK_DATE) if (!process.env.DEBUG) { global.console.log = jest.fn() // console.log are ignored in tests global.console.warn = jest.fn() // console.warn are ignored in tests } if (!process.env.CI) { // set a longer timeout in dev for debugging // 100 seconds jest.setTimeout(100000) }