https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 5df1bef579edca99bfbb61c7ab14f275e7391438 authored by Rohit Singh on 21 June 2022, 10:31:22 UTC
v3.4.7
Tip revision: 5df1bef
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