From eb977f81605b5df992d9dce7cfd08cf9d68fc9cb Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 27 Jun 2026 17:13:20 +0200 Subject: [PATCH] Fix time zone handling for deterministic execution in UTC --- apps/api/jest.config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/api/jest.config.ts b/apps/api/jest.config.ts index b87f91a79..805710396 100644 --- a/apps/api/jest.config.ts +++ b/apps/api/jest.config.ts @@ -1,4 +1,8 @@ /* eslint-disable */ + +// Run tests in UTC for deterministic date-based calculations +process.env.TZ = 'UTC'; + export default { displayName: 'api',