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:
authorJohann-S <johann.servoire@gmail.com>2019-01-17 13:06:43 +0300
committerGitHub <noreply@github.com>2019-01-17 13:06:43 +0300
commit842da1ddc3873dc72a725266c8e59a81d31d1f20 (patch)
treecc736bb0023d20f48e6a0290131a7ff34b851350 /js/tests/karma.conf.js
parent3aeda9942dc1743e982b2b6bfeee2e1cfbca2ec5 (diff)
use absolute path to output lcov file for coveralls (#28075)
Diffstat (limited to 'js/tests/karma.conf.js')
-rw-r--r--js/tests/karma.conf.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/tests/karma.conf.js b/js/tests/karma.conf.js
index a6c6905985..52a3ba23e4 100644
--- a/js/tests/karma.conf.js
+++ b/js/tests/karma.conf.js
@@ -1,6 +1,7 @@
/* eslint-env node */
/* eslint no-process-env: 0 */
+const path = require('path')
const ip = require('ip')
const {
browsers,
@@ -114,7 +115,7 @@ if (bundle) {
conf.customLaunchers = customLaunchers
conf.detectBrowsers = detectBrowsers
conf.coverageIstanbulReporter = {
- dir: '../coverage/',
+ dir: path.resolve(__dirname, '../coverage/'),
reports: ['lcov', 'text-summary'],
thresholds: {
emitWarning: false,