jest-expo 57.0.2 → 57.0.4
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jest-expo",
|
|
3
|
-
"version": "57.0.
|
|
3
|
+
"version": "57.0.4",
|
|
4
4
|
"description": "A Jest preset to painlessly test your Expo / React Native apps.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"expo": "*",
|
|
51
51
|
"react-native": "*",
|
|
52
|
-
"@react-native/jest-preset": "^0.86.
|
|
52
|
+
"@react-native/jest-preset": "^0.86.2",
|
|
53
53
|
"react-server-dom-webpack": "~19.0.4 || ~19.1.5 || ~19.2.4"
|
|
54
54
|
},
|
|
55
55
|
"peerDependenciesMeta": {
|
|
@@ -61,11 +61,11 @@
|
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@react-native/jest-preset": "0.86.
|
|
64
|
+
"@react-native/jest-preset": "0.86.2",
|
|
65
65
|
"@types/react": "~19.2.0",
|
|
66
66
|
"react-server-dom-webpack": "~19.0.6"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "9a08ef16f8abc1788dec0014612be5eeb5dc03af",
|
|
69
69
|
"scripts": {
|
|
70
70
|
"lint": "eslint .",
|
|
71
71
|
"test": "jest"
|
|
@@ -632,6 +632,11 @@ module.exports = {
|
|
|
632
632
|
ExpoObserve: [
|
|
633
633
|
{ name: 'configure', argumentsCount: 1, key: 'configure' },
|
|
634
634
|
{ name: 'dispatchEvents', argumentsCount: 0, key: 'dispatchEvents' },
|
|
635
|
+
{
|
|
636
|
+
name: 'getIntegrations',
|
|
637
|
+
argumentsCount: 0,
|
|
638
|
+
key: 'getIntegrations',
|
|
639
|
+
},
|
|
635
640
|
{ name: 'setBundleDefaults', argumentsCount: 1, key: 'setBundleDefaults' },
|
|
636
641
|
],
|
|
637
642
|
ExpoPrint: [
|
|
@@ -1369,6 +1374,7 @@ module.exports = {
|
|
|
1369
1374
|
addListener: { type: 'function' },
|
|
1370
1375
|
configure: { type: 'function' },
|
|
1371
1376
|
dispatchEvents: { type: 'function' },
|
|
1377
|
+
getIntegrations: { type: 'function' },
|
|
1372
1378
|
removeListeners: { type: 'function' },
|
|
1373
1379
|
setBundleDefaults: { type: 'function' },
|
|
1374
1380
|
},
|