mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
3c6e6b9af7
* chore: revert "Fix sidebar test" This reverts commit096d634917
. Sorry, this push should have gone to my fork only. * chore: revert "Merge branch 'apm' into pr/mbtools/2" This reverts commit87fa9270a5
, reversing changes made todc2cd48a78
. Sorry, this push should have gone to my fork only.
16 lines
425 B
JavaScript
16 lines
425 B
JavaScript
module.exports = {
|
|
moduleFileExtensions: ['ts', 'js'],
|
|
transform: {
|
|
'^.+\\.(js|ts)$': 'babel-jest',
|
|
},
|
|
verbose: false,
|
|
collectCoverage: false,
|
|
coverageReporters: ['text', 'html'],
|
|
collectCoverageFrom: ['src/**/*.ts', '!**/node_modules/**', '!**/partials/**', '!**/fixture/**'],
|
|
coveragePathIgnorePatterns: ['node_modules', 'fixtures'],
|
|
coverageThreshold: {
|
|
global: {
|
|
lines: 85,
|
|
},
|
|
},
|
|
};
|