Files
AppDev/FastNotes/jest.config.js
2026-03-18 16:38:55 +01:00

13 lines
477 B
JavaScript

module.exports = {
preset: "jest-expo",
clearMocks: true,
watchman: false,
setupFilesAfterEnv: ["<rootDir>/jest.setup.ts"],
moduleNameMapper: {
"^@/(.*)$": "<rootDir>/$1",
},
transformIgnorePatterns: [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?|expo(nent)?|@expo(nent)?/.*|@expo/.*|expo-router|@react-navigation/.*|react-native-safe-area-context|react-native-reanimated|react-native-gesture-handler|react-native-screens))",
],
};