Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup-deps-rn-next/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ runs:

- name: Switch to React Native Next
run: |
yarn add -D react-native@next @react-native/babel-preset@next react@19.1.1 react-test-renderer@19.1.1
yarn add -D react-native@next @react-native/babel-preset@next
shell: bash
2 changes: 1 addition & 1 deletion .github/actions/setup-deps-rn-nightly/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ runs:

- name: Switch to React Native Nightly
run: |
yarn add -D react-native@nightly @react-native/babel-preset@nightly react@19.1.1 react-test-renderer@19.1.1
yarn add -D react-native@nightly @react-native/babel-preset@nightly
shell: bash
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
"typings/index.flow.js"
],
"dependencies": {
"jest-matcher-utils": "^30.0.5",
"jest-matcher-utils": "^30.2.0",
"picocolors": "^1.1.1",
"pretty-format": "^30.0.5",
"pretty-format": "^30.2.0",
"redent": "^3.0.0"
},
"peerDependencies": {
Expand All @@ -67,35 +67,35 @@
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.3",
"@babel/core": "^7.28.4",
"@babel/plugin-transform-strict-mode": "^7.27.1",
"@babel/preset-env": "^7.28.3",
"@babel/preset-flow": "^7.27.1",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@callstack/eslint-config": "^15.0.0",
"@react-native/babel-preset": "0.81.0",
"@react-native/babel-preset": "0.82.0",
"@release-it/conventional-changelog": "^10.0.1",
"@relmify/jest-serializer-strip-ansi": "^1.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@types/node": "^24.7.0",
"@types/react": "^19.1.10",
"@types/react-test-renderer": "^19.1.0",
"babel-jest": "^30.0.5",
"babel-jest": "^30.2.0",
"babel-plugin-module-resolver": "^5.0.2",
"del-cli": "^6.0.0",
"eslint": "^9.33.0",
"del-cli": "^7.0.0",
"eslint": "^9.37.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"flow-bin": "~0.170.0",
"jest": "^30.0.5",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"react": "19.1.0",
"react-native": "0.81.0",
"react": "19.1.1",
"react-native": "0.82.0",
"react-native-gesture-handler": "^2.28.0",
"react-test-renderer": "19.1.0",
"release-it": "^19.0.4",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.1"
"react-test-renderer": "19.1.1",
"release-it": "^19.0.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/__snapshots__/render-debug.test.tsx.snap
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing

exports[`debug 1`] = `
"<View>
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/__snapshots__/render.test.tsx.snap
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing

exports[`toJSON renders host output 1`] = `
<View
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing

exports[`userEvent.longPress with fake timers calls onLongPress if the delayLongPress is the default one 1`] = `
[
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing

exports[`userEvent.press with fake timers works on Pressable 1`] = `
[
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing

exports[`scrollTo() supports vertical drag scroll: scrollTo({ y: 100 }) 1`] = `
[
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing

exports[`type() for managed TextInput supports basic case: input: "Wow" 1`] = `
[
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing

exports[`type() supports backspace: input: "{Backspace}a", defaultValue: "xxx" 1`] = `
[
Expand Down
Loading