diff options
author | 2023-08-26 02:35:10 -0700 | |
---|---|---|
committer | 2023-08-26 02:35:10 -0700 | |
commit | f16d729c767456ec097a73d6192b237d5d50ebeb (patch) | |
tree | ca86cd8cb4d26c145e9c747baa2ec9e7f79f5ca5 | |
parent | 2a9e967fd1c766a718808d5a7fa779d74d44e62c (diff) | |
download | bun-f16d729c767456ec097a73d6192b237d5d50ebeb.tar.gz bun-f16d729c767456ec097a73d6192b237d5d50ebeb.tar.zst bun-f16d729c767456ec097a73d6192b237d5d50ebeb.zip |
Set the timezone in spawn (#4337)
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
-rw-r--r-- | test/harness.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/harness.ts b/test/harness.ts index 2da12e094..af8a13a75 100644 --- a/test/harness.ts +++ b/test/harness.ts @@ -6,6 +6,7 @@ export const bunEnv: any = { BUN_DEBUG_QUIET_LOGS: "1", NO_COLOR: "1", FORCE_COLOR: undefined, + TZ: "Etc/UTC", }; export function bunExe() { |