mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-05 18:40:01 -06:00
Additions to testing files - including ensuring QueueProvider functionality Fix issue where artists in the favorites wouldn't show up
20 lines
672 B
JavaScript
20 lines
672 B
JavaScript
// https://docs.swmansion.com/react-native-gesture-handler/docs/guides/testing
|
|
module.exports = {
|
|
preset: 'jest-expo',
|
|
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',
|
|
],
|
|
extensionsToTreatAsEsm: ['.ts', '.tsx'],
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!(@)?(react-native|react-native-.*|react-navigation|jellyfin|burnt|expo|expo-.*)/)',
|
|
],
|
|
}
|