mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
37274e4c8d
* feat: implement abbreviated manifest * chore: add time field * chore: add abbreviated version * chore: fix missing time * chore: fix merge time issue * Update jest.config.js * add tests * chore: add tests * chore: add missing fields
12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
const config = require('../../jest/config');
|
|
|
|
module.exports = Object.assign({}, config, {
|
|
coverageThreshold: {
|
|
global: {
|
|
// FIXME: increase to 90
|
|
branches: 55,
|
|
functions: 81,
|
|
lines: 71,
|
|
},
|
|
},
|
|
});
|