Files
notesnook/apps/mobile/native/jest.config.js
ammarahm-ed 2c900739b5 refactor
2022-08-16 16:48:10 +05:00

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__']
};