From 0a35243d88bea1f458e28532cc6e32a4f47f9fe5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20J=C3=A4derberg?= Date: Fri, 22 Nov 2024 13:17:33 +0100 Subject: [PATCH] fix: remove test-data --- .../(standard)/select-rate/getValidDates.test.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/getValidDates.test.ts b/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/getValidDates.test.ts index 9fe1e666c..61e162b02 100644 --- a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/getValidDates.test.ts +++ b/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/getValidDates.test.ts @@ -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() })