forked from Expensify/App
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update a few tests with accountID-keyed details
- Loading branch information
1 parent
7f0a66d
commit 54ecbcb
Showing
2 changed files
with
19 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,55 +26,64 @@ jest.mock('@react-navigation/native', () => { | |
}); | ||
|
||
const fakePersonalDetails = { | ||
'[email protected]': { | ||
1: { | ||
accountID: 1, | ||
login: '[email protected]', | ||
displayName: 'Email One', | ||
avatar: 'none', | ||
firstName: 'One', | ||
}, | ||
'[email protected]': { | ||
2: { | ||
accountID: 2, | ||
login: '[email protected]', | ||
displayName: 'Email Two', | ||
avatar: 'none', | ||
firstName: 'Two', | ||
}, | ||
'[email protected]': { | ||
3: { | ||
accountID: 3, | ||
login: '[email protected]', | ||
displayName: 'Email Three', | ||
avatar: 'none', | ||
firstName: 'Three', | ||
}, | ||
'[email protected]': { | ||
4: { | ||
accountID: 4, | ||
login: '[email protected]', | ||
displayName: 'Email Four', | ||
avatar: 'none', | ||
firstName: 'Four', | ||
}, | ||
'[email protected]': { | ||
5: { | ||
accountID: 5, | ||
login: '[email protected]', | ||
displayName: 'Email Five', | ||
avatar: 'none', | ||
firstName: 'Five', | ||
}, | ||
'[email protected]': { | ||
6: { | ||
accountID: 6, | ||
login: '[email protected]', | ||
displayName: 'Email Six', | ||
avatar: 'none', | ||
firstName: 'Six', | ||
}, | ||
'[email protected]': { | ||
7: { | ||
accountID: 7, | ||
login: '[email protected]', | ||
displayName: 'Email Seven', | ||
avatar: 'none', | ||
firstName: 'Seven', | ||
}, | ||
'[email protected]': { | ||
8: { | ||
accountID: 8, | ||
login: '[email protected]', | ||
displayName: 'Email Eight', | ||
avatar: 'none', | ||
firstName: 'Eight', | ||
}, | ||
'[email protected]': { | ||
9: { | ||
accountID: 9, | ||
login: '[email protected]', | ||
displayName: 'Email Nine', | ||
avatar: 'none', | ||
|