https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 5858eb494898b3c8b6ce270aac59c0c94e31aa8c authored by Suraj Ahmed on 11 April 2022, 14:03:04 UTC
feat: build issue
Tip revision: 5858eb4
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