mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
* remove dupe account screens and prefer the term home * organize screen loading better * sort keys * rename screen files wip * fix deleted directory issues * rename folders * fix paths and naming * save working jest import test * save base working jest navigation test * finalize navigation refactor and jest test * update test name and podfile lock * remove unused packages * use the correct version of react test renderer
14 lines
754 B
JavaScript
14 lines
754 B
JavaScript
module.exports = {
|
|
preset: 'react-native',
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!(react-native|@react-native|@react-navigation|@react-native-community|@segment/analytics-react-native|@openpassport|react-native-keychain|react-native-check-version|react-native-nfc-manager|react-native-passport-reader|uuid|@stablelib|@react-native-google-signin|react-native-cloud-storage|@react-native-clipboard)/)',
|
|
],
|
|
setupFiles: ['<rootDir>/jest.setup.js'],
|
|
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.[jt]sx?$',
|
|
moduleNameMapper: {
|
|
'^@env$': '<rootDir>/tests/__setup__/@env.js',
|
|
'^@openpassport/(.*)$': '<rootDir>/../common/node_modules/@openpassport/$1',
|
|
},
|
|
};
|