diff options
author | Lukas Eipert <leipert@gitlab.com> | 2018-09-14 15:40:53 +0200 |
---|---|---|
committer | Lukas Eipert <leipert@gitlab.com> | 2018-09-14 15:52:38 +0200 |
commit | 835733a07031e1d5e2f7e30e5f86c2c54c3018a4 (patch) | |
tree | 95ab9d1e7cbce2d343541f07359358bebc3782b6 /config | |
parent | 18b99cca2e523d41b0fc078f056b722320ca5cee (diff) | |
download | gitlab-ce-835733a07031e1d5e2f7e30e5f86c2c54c3018a4.tar.gz |
Fix karma junit reports on CI
Diffstat (limited to 'config')
-rw-r--r-- | config/karma.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/karma.config.js b/config/karma.config.js index c890c670619..74dc5c13c70 100644 --- a/config/karma.config.js +++ b/config/karma.config.js @@ -84,7 +84,7 @@ module.exports = function(config) { basePath: ROOT_PATH, browsers: ['ChromeHeadlessCustom'], client: { - isCI: !!process.env.CI + color: !process.env.CI }, customLaunchers: { ChromeHeadlessCustom: { |