From e107ee86fecd741e86786e777cf8fe16778eecdc Mon Sep 17 00:00:00 2001 From: Violet Caulfield Date: Sun, 6 Apr 2025 10:40:52 -0500 Subject: [PATCH] ignore all react-native-.* package transforms --- jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index 29cff5eb..99c1046c 100644 --- a/jest.config.js +++ b/jest.config.js @@ -5,6 +5,6 @@ module.exports = { setupFilesAfterEnv: ["./jest/setup.js"], extensionsToTreatAsEsm: ['.ts', '.tsx'], transformIgnorePatterns: [ - 'node_modules/(?!(@)?(react-native|react-native-vector-icons|react-native-url-polyfill|react-navigation|react-native-track-player|jellyfin|burnt|expo|expo-.*)/)', + 'node_modules/(?!(@)?(react-native|react-native-.*|react-navigation|jellyfin|burnt|expo|expo-.*)/)', ], };