We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26108dd commit 99156ddCopy full SHA for 99156dd
jest.config.js
@@ -2,6 +2,10 @@ const IS_EE = require('./config/helpers/is_ee_env');
2
3
const reporters = ['default'];
4
5
+// To have consistent date time parsing both in local and CI environments we set
6
+// the timezone of the Node process. https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/27738
7
+process.env.TZ = 'GMT';
8
+
9
if (process.env.CI) {
10
reporters.push([
11
'jest-junit',
0 commit comments