jest-expo 54.0.10 → 54.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/jest-preset.js +2 -1
- package/package.json +3 -3
package/jest-preset.js
CHANGED
|
@@ -100,7 +100,8 @@ if (!Array.isArray(jestPreset.transformIgnorePatterns)) {
|
|
|
100
100
|
|
|
101
101
|
// Also please keep `unit-testing.mdx` file up to date
|
|
102
102
|
jestPreset.transformIgnorePatterns = [
|
|
103
|
-
'/node_modules/(?!(
|
|
103
|
+
'/node_modules/(?!(.pnpm|react-native|@react-native|@react-native-community|expo|@expo|@expo-google-fonts|react-navigation|@react-navigation|@sentry/react-native|native-base))',
|
|
104
|
+
// Disable transforming the reanimated plugin in multi-platform tests, causing "Reentrant plugin detected trying to load react-native-reanimated/plugin.."
|
|
104
105
|
'/node_modules/react-native-reanimated/plugin/',
|
|
105
106
|
];
|
|
106
107
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jest-expo",
|
|
3
|
-
"version": "54.0.
|
|
3
|
+
"version": "54.0.12",
|
|
4
4
|
"description": "A Jest preset to painlessly test your Expo / React Native apps.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"preset": "jest-expo/universal"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@expo/config": "~12.0.
|
|
40
|
+
"@expo/config": "~12.0.9",
|
|
41
41
|
"@expo/json-file": "^10.0.7",
|
|
42
42
|
"@jest/create-cache-key-function": "^29.2.1",
|
|
43
43
|
"@jest/globals": "^29.2.1",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"expo": "*",
|
|
58
58
|
"react-native": "*"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "0d9ae61f3dea2e2b854576859e5b50fca5503fc1"
|
|
61
61
|
}
|