cypher-engine
Version:
Cypher Engine to generate Cypher queries
25 lines (24 loc) • 467 B
JavaScript
module.exports = {
cache: false,
roots: ['<rootDir>/test'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
testRegex: '(/.*.(test|spec)).(jsx?|tsx?)$',
globals: {
'ts-jest': {
tsconfig: 'jestconfig.json'
}
},
moduleFileExtensions: ['ts', 'js'],
collectCoverage: true,
verbose: true,
coverageThreshold: {
global: {
branches: 80,
functions: 80,
lines: 80,
statements: -10
}
}
};