https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: bd733f1f67a8059fab8fc6436dd23e2b15da6f84 authored by Aditya Jamuar on 08 December 2021, 12:51:10 UTC
v3.3.0-rc.1
Tip revision: bd733f1
jest-ios.config.js
const config = {
  preset: 'jest-expo/ios',
  transformIgnorePatterns: [
    '<rootDir>/../node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|@sentry/.*)',
  ],
  setupFilesAfterEnv: ['<rootDir>/__mocks__/globalMock.js'],
};

module.exports = config;
back to top