https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 37c723ad7ed0416a406941702a33b5b86cd1f5ca authored by ankit-tailor on 03 August 2022, 06:52:35 UTC
fix: key prop
Tip revision: 37c723a
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