mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-24 12:08:44 -06:00
21 lines
711 B
JavaScript
21 lines
711 B
JavaScript
// https://docs.swmansion.com/react-native-gesture-handler/docs/guides/testing
|
|
module.exports = {
|
|
preset: 'react-native',
|
|
setupFiles: ['./node_modules/react-native-gesture-handler/jestSetup.js'],
|
|
setupFilesAfterEnv: [
|
|
'./jest/setup.ts',
|
|
'./jest/setup-carplay.ts',
|
|
'./jest/setup-blurhash.ts',
|
|
'./jest/setup-device-info.js', // JS to prevent Typescript implicit any warning
|
|
'./jest/setup-reanimated.ts',
|
|
'./jest/setup-rnfs.ts',
|
|
'./jest/setup-rntp.ts',
|
|
'./tamagui.config.ts',
|
|
'./jest/setup-native-modules.ts',
|
|
],
|
|
extensionsToTreatAsEsm: ['.ts', '.tsx'],
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!(@)?(react-native|react-native-.*|react-navigation|jellyfin|burnt|expo|expo-.*)/)',
|
|
],
|
|
}
|