mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-12 05:50:54 -06:00
Re-enables new architecture on Android by switching to a different fork of React Native Track Player Removes dependency on react-native-blurhash - we aren't using it as our image component can handle this for us Improves album layout on artist screen by adjusting flex of album details and album artwork
20 lines
681 B
JavaScript
20 lines
681 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-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-.*)/)',
|
|
],
|
|
}
|