mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-05-17 06:39:40 +03:00
fix ngx cvoerage path
This commit is contained in:
@@ -11,6 +11,7 @@ module.exports = defineConfig({
|
||||
include,
|
||||
coverage: {
|
||||
reportsDirectory: './.coverage/unit',
|
||||
// without this the setup file or the test files show up in the final coverage on the CI
|
||||
exclude: [`**/${setupFileName}`, ...include],
|
||||
},
|
||||
},
|
||||
|
||||
@@ -26,9 +26,9 @@ module.exports = function (config) {
|
||||
suppressAll: true, // removes the duplicated traces
|
||||
},
|
||||
coverageReporter: {
|
||||
dir: require('path').join(__dirname, './.coverage'),
|
||||
dir: require('path').join(__dirname, './.coverage/unit'),
|
||||
subdir: '.',
|
||||
reporters: [{ type: 'json' }, { type: 'text' }],
|
||||
reporters: [{ type: 'json' }, { type: 'html' }, { type: 'text' }],
|
||||
},
|
||||
reporters: ['progress', 'kjhtml'],
|
||||
port: 9876,
|
||||
|
||||
Reference in New Issue
Block a user