https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 7110d01e0fdef7387a02d0bb47004079170cdc2a authored by Viraj-10 on 16 September 2022, 09:55:20 UTC
fix: removing unchecked from radio
Tip revision: 7110d01
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