mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
20 lines
279 B
JavaScript
20 lines
279 B
JavaScript
module.exports = {
|
|
testMatch: [
|
|
'**/*.test.js',
|
|
],
|
|
|
|
testPathIgnorePatterns: [
|
|
'<rootDir>/node_modules/',
|
|
'<rootDir>/assets/',
|
|
],
|
|
|
|
testEnvironment: 'node',
|
|
|
|
slowTestThreshold: 60,
|
|
|
|
setupFilesAfterEnv: [
|
|
'jest-expect-message',
|
|
`${__dirname}/jest.setup.js`,
|
|
],
|
|
};
|