mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
21 lines
372 B
JavaScript
21 lines
372 B
JavaScript
const jestConfig = require('./jest.config');
|
|
|
|
module.exports = {
|
|
...jestConfig,
|
|
collectCoverage: true,
|
|
coverageReporters: [ 'text', 'lcov' ],
|
|
coveragePathIgnorePatterns: [
|
|
'/dist/',
|
|
'/node_modules/',
|
|
'/test/',
|
|
],
|
|
coverageThreshold: {
|
|
'./src': {
|
|
branches: 100,
|
|
functions: 100,
|
|
lines: 100,
|
|
statements: 100,
|
|
},
|
|
},
|
|
};
|