https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: f691b2abf2901f0eca57205a2d76c6541eaf8b8b authored by Suraj Ahmed Choudhury on 20 September 2022, 06:57:02 UTC
Merge pull request #5386 from GeekyAnts/fix/typing-link
Tip revision: f691b2a
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