Skip to content

Commit

Permalink
Merge pull request #495 from thornbill/fix-rn-version-0.69.9
Browse files Browse the repository at this point in the history
Fix incorrect react-native version
  • Loading branch information
thornbill authored Jun 3, 2024
2 parents b33e58f + 1565d88 commit 925bbe5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"react": "18.0.0",
"react-i18next": "11.18.6",
"react-lifecycles-compat": "3.0.4",
"react-native": "0.69.6",
"react-native": "0.69.9",
"react-native-elements": "3.4.3",
"react-native-gesture-handler": "~2.5.0",
"react-native-get-random-values": "~1.8.0",
Expand Down
2 changes: 1 addition & 1 deletion utils/__tests__/ServerValidator.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('ServerValidator', () => {
});

it('should throw an error if hostname is invalid', () => {
expect(() => parseUrl('/')).toThrow('Invalid URL: /');
expect(() => parseUrl('/')).toThrow('Invalid URL');
});

it('should default to http protocol if not specified', () => {
Expand Down

0 comments on commit 925bbe5

Please sign in to comment.