Files
standardnotes-app-web/packages/api/jest.config.js

18 lines
353 B
JavaScript

// eslint-disable-next-line @typescript-eslint/no-var-requires
const base = require('../../common.jest.json')
module.exports = {
...base,
transform: {
'^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.json' }],
},
coverageThreshold: {
global: {
branches: 22,
functions: 69,
lines: 67,
statements: 67
}
}
};