https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: b902f0934fa3bb4c41444e0d6023459022d62357 authored by Suraj Ahmed on 13 June 2022, 06:49:40 UTC
fix: text decoration fixes for link button
Tip revision: b902f09
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