24 lines
575 B
TypeScript
24 lines
575 B
TypeScript
import "./logging"
|
|
import env from "../src/environment"
|
|
import { mocks, testContainerUtils } from "./utilities"
|
|
|
|
// must explicitly enable fetch mock
|
|
mocks.fetch.enable()
|
|
|
|
// mock all dates to 2020-01-01T00:00:00.000Z
|
|
// use tk.reset() to use real dates in individual tests
|
|
import tk from "timekeeper"
|
|
tk.freeze(mocks.date.MOCK_DATE)
|
|
|
|
if (!process.env.DEBUG) {
|
|
console.log = jest.fn() // console.log are ignored in tests
|
|
}
|
|
|
|
if (!process.env.CI) {
|
|
// set a longer timeout in dev for debugging
|
|
// 100 seconds
|
|
jest.setTimeout(100000)
|
|
}
|
|
|
|
testContainerUtils.setupEnv(env)
|