mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
use absolute path to output lcov file for coveralls (#28075)
This commit is contained in:
parent
3aeda9942d
commit
842da1ddc3
1 changed files with 2 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue