diff --git a/website/docs/ReactNavigation.md b/website/docs/ReactNavigation.md index c685c3bcc..d27c80736 100644 --- a/website/docs/ReactNavigation.md +++ b/website/docs/ReactNavigation.md @@ -140,6 +140,9 @@ module.exports = { setupFiles: ['./node_modules/react-native-gesture-handler/jestSetup.js'], transformIgnorePatterns: [ 'node_modules/(?!(jest-)?@?react-native|@react-native-community|@react-navigation)', + + // For pnpm you need to use inlcude `(?!(?:.pnpm/)?` part like this: + // 'node_modules/(?!(?:.pnpm/)?((jest-)?@?react-native|@react-native-community|@react-navigation))', ], }; ```