@ornikar/jest-config-react 16.0.0 → 16.0.1-canary.ed6f0a900a94f919109f8281b69bbc33067adb47.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [16.0.1-canary.ed6f0a900a94f919109f8281b69bbc33067adb47.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react@16.0.0...@ornikar/jest-config-react@16.0.1-canary.ed6f0a900a94f919109f8281b69bbc33067adb47.0) (2025-07-22)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * silence warning from react-native-reanimated regarding reduced motion setting ([ed6f0a9](https://github.com/ornikar/shared-configs/commit/ed6f0a900a94f919109f8281b69bbc33067adb47))
12
+
13
+
14
+
6
15
  ## [16.0.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react@15.0.0...@ornikar/jest-config-react@16.0.0) (2025-07-10)
7
16
 
8
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ornikar/jest-config-react",
3
- "version": "16.0.0",
3
+ "version": "16.0.1-canary.ed6f0a900a94f919109f8281b69bbc33067adb47.0",
4
4
  "description": "✅⚛️ jest config for react",
5
5
  "repository": {
6
6
  "directory": "@ornikar/jest-config-react",
@@ -23,7 +23,7 @@
23
23
  "react-dom": "^18.2.0"
24
24
  },
25
25
  "dependencies": {
26
- "@ornikar/jest-config": "13.0.0",
26
+ "@ornikar/jest-config": "13.0.1-canary.ed6f0a900a94f919109f8281b69bbc33067adb47.0",
27
27
  "identity-obj-proxy": "^3.0.0",
28
28
  "jest-fail-on-console": "3.3.1"
29
29
  },
@@ -18,6 +18,11 @@ failOnConsole({
18
18
  return true;
19
19
  }
20
20
 
21
+ // Silence a warning from react-native-reanimated to "avoid confusion" (see https://docs.swmansion.com/react-native-reanimated/docs/guides/troubleshooting/#reduced-motion-setting-is-enabled-on-this-device).
22
+ if (message.includes('[Reanimated] Reduced motion setting is enabled on this device.')) {
23
+ return true;
24
+ }
25
+
21
26
  // Do not ignore the act / await warning anymore once we are on React 18
22
27
  if (message.includes('You called act(async () => ...) without await')) return true;
23
28