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

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-11-18 14:06:04 +0300
committerGitHub <noreply@github.com>2020-11-18 14:06:04 +0300
commit2d4f1b272ceff9f1b6b60b74b08d1d6e4f878460 (patch)
tree077f49d0d20e153125ff319a63c05db577f6b09e /js/tests/karma.conf.js
parent2b0b3091a0dfc965c8400e4aefeb0e710fa86dc6 (diff)
Update karma.conf.js (#32182)
When we are on CI, this statement won't be reached.
Diffstat (limited to 'js/tests/karma.conf.js')
-rw-r--r--js/tests/karma.conf.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tests/karma.conf.js b/js/tests/karma.conf.js
index 74109460e8..0728a8cfa4 100644
--- a/js/tests/karma.conf.js
+++ b/js/tests/karma.conf.js
@@ -33,7 +33,7 @@ const detectBrowsers = {
return debug ? ['Chrome'] : ['ChromeHeadless']
}
- if (env.CI === true || availableBrowser.includes('Chromium')) {
+ if (availableBrowser.includes('Chromium')) {
return debug ? ['Chromium'] : ['ChromiumHeadless']
}