1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00
This commit is contained in:
sjaanus 2022-09-01 19:22:15 +00:00 committed by GitHub
parent ad546a054f
commit a7a4a743bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -55,6 +55,7 @@
"automock": false,
"maxWorkers": 4,
"testTimeout": 10000,
"globalSetup": "./scripts/jest-setup.js",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},

3
scripts/jest-setup.js Normal file
View File

@ -0,0 +1,3 @@
module.exports = async () => {
process.env.TZ = 'UTC';
};