dockerfile/examples/standardnotes/official-src/server-main/jest.config.js

15 lines
282 B
JavaScript
Raw Normal View History

2024-03-15 14:52:38 +08:00
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.ts$',
testTimeout: 20000,
coverageThreshold: {
global: {
branches: 100,
functions: 100,
lines: 100,
statements: 100,
},
},
};