mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-30 08:26:59 +02:00
44e60bdda9
Revert commit dfd95f8385
Due to UX issues.
Ref https://discourse.joplinapp.org/t/25775/30
20 lines
271 B
JavaScript
20 lines
271 B
JavaScript
module.exports = {
|
|
preset: 'react-native',
|
|
|
|
'moduleFileExtensions': [
|
|
'ts',
|
|
'tsx',
|
|
'js',
|
|
],
|
|
|
|
'transform': {
|
|
'\\.(ts|tsx)$': 'ts-jest',
|
|
},
|
|
|
|
testMatch: ['**/*.test.(ts|tsx)'],
|
|
|
|
testPathIgnorePatterns: ['<rootDir>/node_modules/'],
|
|
|
|
slowTestThreshold: 40,
|
|
};
|