@ornikar/jest-config-react 13.0.2 → 13.0.3-canary.a4af452d883a4606c51343e546a0e14fc3d1cda6.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,14 @@
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
+ ## [13.0.3-canary.a4af452d883a4606c51343e546a0e14fc3d1cda6.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react@13.0.2...@ornikar/jest-config-react@13.0.3-canary.a4af452d883a4606c51343e546a0e14fc3d1cda6.0) (2024-05-13)
7
+
8
+ **Note:** Version bump only for package @ornikar/jest-config-react
9
+
10
+
11
+
12
+
13
+
6
14
  ## [13.0.2](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react@13.0.1...@ornikar/jest-config-react@13.0.2) (2024-02-16)
7
15
 
8
16
  **Note:** Version bump only for package @ornikar/jest-config-react
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ornikar/jest-config-react",
3
- "version": "13.0.2",
3
+ "version": "13.0.3-canary.a4af452d883a4606c51343e546a0e14fc3d1cda6.0",
4
4
  "description": "✅⚛️ jest config for react",
5
5
  "repository": {
6
6
  "directory": "@ornikar/jest-config-react",
@@ -28,7 +28,7 @@
28
28
  "jest-fail-on-console": "^3.1.1"
29
29
  },
30
30
  "devDependencies": {
31
- "@testing-library/react": "14.2.1",
31
+ "@testing-library/react": "14.3.1",
32
32
  "jest": "29.7.0",
33
33
  "react": "18.2.0",
34
34
  "react-dom": "18.2.0"
@@ -38,6 +38,7 @@ failOnConsole({
38
38
  if (message.startsWith('accessibilityLabel is deprecated. Use aria-label.')) return true;
39
39
  if (message.startsWith('editable is deprecated. Use readOnly.')) return true;
40
40
  if (message.startsWith('props.pointerEvents is deprecated. Use style.pointerEvents')) return true;
41
+ if (/"transform" style array value is deprecated/.test(message)) return true;
41
42
  // Native base does not support role prop and needs accessibilityRole which is deprecated by react-native-web
42
43
  if (message.startsWith('accessibilityRole is deprecated. Use role.')) return true;
43
44