Files
Jellify/jest.config.js
Violet Caulfield 81624c959a update jest.config.js
Changes taken from @charpeni 🙏
2025-04-03 08:56:56 -07:00

10 lines
390 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"],
extensionsToTreatAsEsm: ['.ts', '.tsx'],
transformIgnorePatterns: [
'node_modules/(?!((@)?react-native|react-native-url-polyfill|@react-navigation|react-native-track-player)/)',
],
};