Files
standardnotes-app-web/packages/utils/jest.config.js
2022-07-06 11:34:54 +02:00

20 lines
376 B
JavaScript

// eslint-disable-next-line @typescript-eslint/no-var-requires
const base = require('../../node_modules/@standardnotes/config/src/jest.json');
module.exports = {
...base,
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
},
coverageThreshold: {
global: {
branches: 4,
functions: 4,
lines: 24,
statements: 25
}
}
};