mirror of
https://github.com/anultravioletaurora/Jellify.git
synced 2025-12-21 13:30:11 -06:00
11 lines
450 B
JavaScript
11 lines
450 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|burnt)/)',
|
|
],
|
|
};
|