jest-expo 53.0.8 → 54.0.0-canary-20250611-f0afe80

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": "53.0.8",
3
+ "version": "54.0.0-canary-20250611-f0afe80",
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,8 +37,8 @@
37
37
  "preset": "jest-expo/universal"
38
38
  },
39
39
  "dependencies": {
40
- "@expo/config": "~11.0.11",
41
- "@expo/json-file": "^9.1.4",
40
+ "@expo/config": "11.0.11-canary-20250611-f0afe80",
41
+ "@expo/json-file": "9.1.5-canary-20250611-f0afe80",
42
42
  "@jest/create-cache-key-function": "^29.2.1",
43
43
  "@jest/globals": "^29.2.1",
44
44
  "babel-jest": "^29.2.1",
@@ -50,13 +50,12 @@
50
50
  "json5": "^2.2.3",
51
51
  "lodash": "^4.17.19",
52
52
  "react-server-dom-webpack": "~19.0.0",
53
- "react-test-renderer": "19.0.0",
53
+ "react-test-renderer": "19.1.0",
54
54
  "server-only": "^0.0.1",
55
55
  "stacktrace-js": "^2.0.2"
56
56
  },
57
57
  "peerDependencies": {
58
- "expo": "*",
58
+ "expo": "54.0.0-canary-20250611-f0afe80",
59
59
  "react-native": "*"
60
- },
61
- "gitHead": "9731a6191dcab84e9c3a24492bbe70c56d6f5cc3"
60
+ }
62
61
  }
@@ -4,8 +4,9 @@
4
4
  */
5
5
  'use strict';
6
6
 
7
- const findUp = require('find-up');
8
7
  const merge = require('lodash/merge');
8
+
9
+ const findUp = require('find-up');
9
10
  const path = require('path');
10
11
  const mockNativeModules = require('react-native/Libraries/BatchedBridge/NativeModules').default;
11
12
  const stackTrace = require('stacktrace-js');