Unverified Commit 842da1dd authored by Johann-S's avatar Johann-S Committed by GitHub
Browse files

use absolute path to output lcov file for coveralls (#28075)

parent 3aeda994
Showing with 2 additions and 1 deletion
+2 -1
/* 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,
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment