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
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-05-16 02:44:12 +0300
committerStan Hu <stanhu@gmail.com>2019-05-16 02:44:12 +0300
commit124eacf774d1a8cb85daad92b1d8d03578fcbebc (patch)
tree130d30f674887223b3cf724c6b5b9f01d3d5448c
parent5e53f25516180ef0f921626ecfc95959eae4f50e (diff)
parent5d260d565db0f3e77c5d667588993a3f54fba7d3 (diff)
Merge branch 'winh-karma-chrome-keychain' into 'master'
Suppress keychain access popup from chromedriver in Karma See merge request gitlab-org/gitlab-ce!28310
-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 83ba46345f2..b2fc3a32816 100644
--- a/config/karma.config.js
+++ b/config/karma.config.js
@@ -107,6 +107,8 @@ module.exports = function(config) {
// chrome cannot run in sandboxed mode inside a docker container unless it is run with
// escalated kernel privileges (e.g. docker run --cap-add=CAP_SYS_ADMIN)
'--no-sandbox',
+ // https://bugs.chromium.org/p/chromedriver/issues/detail?id=2870
+ '--enable-features=NetworkService,NetworkServiceInProcess',
],
},
},