Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-01-24 01:37:14 +0300
committerMike Greiling <mike@pixelcog.com>2018-01-24 01:37:14 +0300
commit74da79113bb2eb7363403d7c2a9f1e0624590b74 (patch)
treec9ce3d5cc90b6468b77502ebc2997d009439e389 /config
parentfbbd81eee6faf9ee9cb3f4071c35bc93147b94b3 (diff)
parentda3faca7be258c25a53d648a49ae16b7e4b8171c (diff)
Merge branch '42251-explicit-timezone-for-karma' into 'master'
Set timezone for karma CI job to Etc/UTC (UTC+0) Closes #42251 See merge request gitlab-org/gitlab-ce!16602
Diffstat (limited to 'config')
-rw-r--r--config/karma.config.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/karma.config.js b/config/karma.config.js
index 9f018d14b8f..a101d35704e 100644
--- a/config/karma.config.js
+++ b/config/karma.config.js
@@ -18,6 +18,8 @@ webpackConfig.devtool = 'cheap-inline-source-map';
// Karma configuration
module.exports = function(config) {
+ process.env.TZ = 'Etc/UTC';
+
var progressReporter = process.env.CI ? 'mocha' : 'progress';
var karmaConfig = {