mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-02-24 20:20:21 +01:00
17 lines
454 B
JavaScript
17 lines
454 B
JavaScript
const path = require('path');
|
|
module.exports = {
|
|
preset: 'react-native',
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'^.+\\.ts?$': 'ts-jest',
|
|
'^.+\\.(js|jsx)$': 'babel-jest'
|
|
},
|
|
transformIgnorePatterns: ['<rootDir>/../node_modules/'],
|
|
setupFiles: [
|
|
'../node_modules/react-native-gesture-handler/jestSetup.js',
|
|
'./jest.setup.js',
|
|
'../node_modules/react-native-mmkv-storage/jest/mmkvJestSetup.js'
|
|
],
|
|
roots: ['../__tests__']
|
|
};
|