mirror of
https://github.com/Jellify-Music/App.git
synced 2026-02-20 18:58:31 -06:00
* OfflineMode * Template addition and Fixes * More Changes * More Changes * smol updates to provider run yarn format * update internet connection watcher colors and verbiage remove react native file access dependency * Offline changes * UI tweaks for offline indicator * get jest to pass --------- Co-authored-by: Ritesh Shukla <ritesh.shukla2@129net231.unica.it> Co-authored-by: Ritesh Shukla <ritesh.shukla2@M-LD4JMWLW26.local> Co-authored-by: Ritesh Shukla <75062358+riteshshukla04@users.noreply.github.com>
18 lines
564 B
JavaScript
18 lines
564 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.js',
|
|
'./jest/setup-carplay.js',
|
|
'./jest/setup-blurhash.js',
|
|
'./jest/setup-reanimated.js',
|
|
'./jest/setup-rnfs.js',
|
|
'./tamagui.config.ts',
|
|
],
|
|
extensionsToTreatAsEsm: ['.ts', '.tsx'],
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!(@)?(react-native|react-native-.*|react-navigation|jellyfin|burnt|expo|expo-.*)/)',
|
|
],
|
|
}
|