mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
3c6e6b9af7
* chore: revert "Fix sidebar test" This reverts commit 096d6349170657e17eb2af802a2187bc40f81cb4. Sorry, this push should have gone to my fork only. * chore: revert "Merge branch 'apm' into pr/mbtools/2" This reverts commit 87fa9270a5fe35fb504a8632de4bfc7a09ab3699, reversing changes made to dc2cd48a783bbbe4ecdecd9b4d41a8f35da95dd1. Sorry, this push should have gone to my fork only.
17 lines
425 B
JavaScript
17 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,
|
|
},
|
|
},
|
|
};
|