joplin/packages/server/jest.config.js

17 lines
248 B
JavaScript
Raw Normal View History

module.exports = {
testMatch: [
'**/*.test.js',
],
testPathIgnorePatterns: [
'<rootDir>/node_modules/',
'<rootDir>/assets/',
],
testEnvironment: 'node',
2021-07-11 15:30:50 +00:00
slowTestThreshold: 40,
2021-01-07 22:15:41 +00:00
setupFilesAfterEnv: [`${__dirname}/jest.setup.js`],
};