mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
22 lines
326 B
JavaScript
22 lines
326 B
JavaScript
module.exports = {
|
|
'moduleFileExtensions': [
|
|
'ts',
|
|
'tsx',
|
|
'js',
|
|
],
|
|
|
|
testEnvironment: 'node',
|
|
|
|
'transform': {
|
|
'\\.(ts|tsx)$': 'ts-jest',
|
|
},
|
|
|
|
testMatch: ['**/*.test.(ts|tsx)'],
|
|
|
|
testPathIgnorePatterns: ['<rootDir>/node_modules/'],
|
|
|
|
slowTestThreshold: 40,
|
|
|
|
setupFilesAfterEnv: [`${__dirname}/jest.setup.js`],
|
|
};
|