mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
27 lines
568 B
JavaScript
27 lines
568 B
JavaScript
module.exports = {
|
|
preset: 'react-native',
|
|
|
|
'moduleFileExtensions': [
|
|
'ts',
|
|
'tsx',
|
|
'js',
|
|
'jsx',
|
|
],
|
|
|
|
'transform': {
|
|
'\\.(ts|tsx)$': 'ts-jest',
|
|
},
|
|
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/*.test.(ts|tsx)'],
|
|
|
|
testPathIgnorePatterns: ['<rootDir>/node_modules/'],
|
|
setupFilesAfterEnv: ['./jest.setup.js'],
|
|
|
|
// Do transform most packages in node_modules (transformations correct unrecognized
|
|
// import syntax)
|
|
transformIgnorePatterns: ['<rootDir>/node_modules/jest', '<rootDir>/node_modules/js-draw', 'node_modules/jsdom'],
|
|
|
|
slowTestThreshold: 40,
|
|
};
|