Fix TimeZone to be UTC in Jest tests (#7082)
This commit is contained in:
@@ -195,6 +195,7 @@
|
||||
"testMatch": [
|
||||
"<rootDir>/test/**/*-test.[jt]s?(x)"
|
||||
],
|
||||
"globalSetup": "<rootDir>/test/globalSetup.js",
|
||||
"setupFiles": [
|
||||
"jest-canvas-mock"
|
||||
],
|
||||
|
||||
3
test/globalSetup.js
Normal file
3
test/globalSetup.js
Normal file
@@ -0,0 +1,3 @@
|
||||
module.exports = async () => {
|
||||
process.env.TZ = 'UTC';
|
||||
};
|
||||
Reference in New Issue
Block a user