1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-21 09:38:01 +02:00
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 17:30:50 +02:00
slowTestThreshold: 40,
2021-01-08 00:15:41 +02:00
setupFilesAfterEnv: [`${__dirname}/jest.setup.js`],
};