1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00
joplin/packages/server/jest.config.js

20 lines
279 B
JavaScript
Raw Normal View History

module.exports = {
testMatch: [
'**/*.test.js',
],
testPathIgnorePatterns: [
'<rootDir>/node_modules/',
'<rootDir>/assets/',
],
testEnvironment: 'node',
2021-12-02 13:27:22 +02:00
slowTestThreshold: 60,
2021-01-08 00:15:41 +02:00
setupFilesAfterEnv: [
'jest-expect-message',
`${__dirname}/jest.setup.js`,
],
};