fix: remove test-data

This commit is contained in:
Joakim Jäderberg
2024-11-22 13:17:33 +01:00
parent 81c4a91563
commit 0a35243d88

View File

@@ -8,13 +8,9 @@ let originalTz: string | undefined
describe("getValidFromDate", () => {
beforeAll(() => {
jest.useFakeTimers({ now: NOW })
originalTz = process.env.TZ
console.log("originalTz", originalTz)
process.env.TZ = "UTC"
})
afterAll(() => {
process.env.TZ = originalTz
jest.useRealTimers()
})