You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
370 B

3 years ago
  1. module.exports = {
  2. preset: '@testing-library/react-native',
  3. setupFiles: [
  4. './node_modules/react-native-gesture-handler/jestSetup.js',
  5. './jest.setup.js',
  6. ],
  7. setupFilesAfterEnv: ['@testing-library/react-native/cleanup-after-each'],
  8. transformIgnorePatterns: [
  9. 'node_modules/(?!(jest-)?react-native|@react-native-community|@react-navigation)',
  10. ],
  11. };