https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 19c2492eebe0cc35e259c397f04feb33f5ba0b45 authored by ankit-tailor on 08 April 2022, 06:13:22 UTC
fix: change divider bg
Tip revision: 19c2492
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