Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

React Native update to 0.63 #2078

Merged
merged 32 commits into from
Feb 4, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
5005b65
Files modified
andrepimenta Dec 16, 2020
a8d5561
Yellow box to logbox and keyboard aware and eslint lib update
andrepimenta Dec 16, 2020
d21fe2d
Update react navigation and fix inputs size
andrepimenta Dec 16, 2020
80b42e9
Update scrollview tests
andrepimenta Dec 16, 2020
383e21f
keyring unit test
andrepimenta Dec 16, 2020
a166691
More scroll view unit testing update
andrepimenta Dec 16, 2020
b564549
Fix typo
andrepimenta Dec 16, 2020
71704a2
Updating password unit tests
andrepimenta Dec 16, 2020
3b114b1
snaps
estebanmino Jan 5, 2021
53c55f7
circle
estebanmino Jan 5, 2021
b9f85aa
9
estebanmino Jan 5, 2021
1e3892c
CURRENT_PROJECT_VERSION
estebanmino Jan 6, 2021
f077f9c
xcodeversioncircleci
estebanmino Jan 6, 2021
a834713
gesture-handler
estebanmino Jan 6, 2021
2325b4e
lock
estebanmino Jan 6, 2021
4879a6a
xcodeversioncircleci
estebanmino Jan 6, 2021
f90c7a0
xcodeversioncircleci
estebanmino Jan 6, 2021
c2dee70
xcodeagain
estebanmino Jan 6, 2021
0ef7b77
intallbundler
estebanmino Jan 7, 2021
e714cf0
faraday
estebanmino Jan 7, 2021
b8d8f40
v
estebanmino Jan 7, 2021
e075568
fastlane
estebanmino Jan 7, 2021
09415a2
bumps
estebanmino Jan 7, 2021
164d4eb
ifdebug
estebanmino Jan 7, 2021
64f9d10
Merge branch 'develop' into improvement/react-native-update-0.63
andrepimenta Jan 12, 2021
b6c1e90
Fix detox for android and ios builds
andrepimenta Jan 19, 2021
aa9096e
Fix tutorial on iOS and backup on android
andrepimenta Jan 19, 2021
3db5a0b
Merge branch 'develop' into improvement/react-native-update-0.63
andrepimenta Jan 19, 2021
67100d5
Merge branch 'develop' into improvement/react-native-update-0.63
andrepimenta Feb 4, 2021
2e5a364
Update yarn.lock
andrepimenta Feb 4, 2021
ae1c3f4
Remove ignore from ci
andrepimenta Feb 4, 2021
1f20730
Update unit tests
andrepimenta Feb 4, 2021
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
Prev Previous commit
Next Next commit
keyring unit test
  • Loading branch information
andrepimenta committed Dec 16, 2020
commit 383e21fee0053fb888557e3014711d8041e27c99
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,16 @@ exports[`Confirm should render correctly 1`] = `
enableAccountsAddition={false}
getBalanceError={[Function]}
identities={Object {}}
keyrings={Object {}}
keyrings={
Array [
Object {
"accounts": Array [
"0x",
],
"type": "HD Key Tree",
},
]
}
onAccountChange={[Function]}
selectedAddress="0x1"
ticker="ETH"
Expand Down
2 changes: 1 addition & 1 deletion app/components/Views/SendFlow/Confirm/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe('Confirm', () => {
identities: {}
},
KeyringController: {
keyrings: {}
keyrings: [{ accounts: ['0x'], type: 'HD Key Tree' }]
}
}
},
Expand Down