mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-28 05:58:43 -06:00
11 lines
444 B
JavaScript
11 lines
444 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.js"],
|
|
extensionsToTreatAsEsm: ['.ts', '.tsx'],
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!((@)?react-native|react-native-url-polyfill|@react-navigation|react-native-track-player|@jellyfin)/)',
|
|
],
|
|
};
|