mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 07:15:35 +01:00
11 lines
427 B
JavaScript
11 lines
427 B
JavaScript
module.exports = {
|
|
preset: 'react-native',
|
|
transform: {
|
|
'^.+\\.(ts|tsx)$': 'ts-jest',
|
|
},
|
|
moduleFileExtensions: ['js', 'json', 'ts', 'tsx'],
|
|
transformIgnorePatterns: ['node_modules/(?!((jest-)?react-native(-.*)?|@react-native(-community)?)|@rneui|silent-payments/)'],
|
|
setupFiles: ['./tests/setup.js'],
|
|
watchPathIgnorePatterns: ['<rootDir>/node_modules'],
|
|
setupFilesAfterEnv: ['./tests/setupAfterEnv.js'],
|
|
};
|