]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-22804 Add a unified jest timezone configuration
authorIsmail Cherri <ismail.cherri@sonarsource.com>
Fri, 16 Aug 2024 13:59:51 +0000 (16:59 +0300)
committersonartech <sonartech@sonarsource.com>
Tue, 27 Aug 2024 20:02:39 +0000 (20:02 +0000)
server/sonar-web/config/jest/GlobalSetup.js [new file with mode: 0644]
server/sonar-web/jest.config.js

diff --git a/server/sonar-web/config/jest/GlobalSetup.js b/server/sonar-web/config/jest/GlobalSetup.js
new file mode 100644 (file)
index 0000000..156fd1e
--- /dev/null
@@ -0,0 +1,22 @@
+/*
+ * SonarQube
+ * Copyright (C) 2009-2024 SonarSource SA
+ * mailto:info AT sonarsource DOT com
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+module.exports = () => {
+  process.env.TZ = 'utc';
+};
index 22bb1268040539c16bc75ce3f04bf70b4a84ae5c..c4ddb33a97568e03cf053a32890535b7fa3ccaad 100644 (file)
@@ -28,6 +28,7 @@ module.exports = {
     '^~sonar-aligned/(.*)': '<rootDir>/src/main/js/sonar-aligned/$1',
     '^.+\\.css$': '<rootDir>/config/jest/CSSStub.js',
   },
+  globalSetup: '<rootDir>/config/jest/GlobalSetup.js',
   setupFiles: [
     '<rootDir>/config/polyfills.ts',
     '<rootDir>/config/jest/SetupTestEnvironment.ts',