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.
- Loading branch information
1 parent
4833d09
commit 4c2cf9c
Showing
1 changed file
with
4 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -234,8 +234,8 @@ describe('OptionsListUtils', () => { | |
expect(results.personalDetails[1].text).toBe('Invisible Woman'); | ||
expect(results.personalDetails[2].login).toBe('[email protected]'); | ||
|
||
// Test for Concierge's existance in chat options | ||
results = OptionsListUtils.getNewChatOptions(REPORTS_WITH_CONCIERGE, PERSONAL_DETAILS_WITH_CONCIERGE, ''); | ||
// Test for Concierge's existence in chat options | ||
results = OptionsListUtils.getNewChatOptions(REPORTS_WITH_CONCIERGE, PERSONAL_DETAILS_WITH_CONCIERGE); | ||
|
||
// Concierge is included in the results by default and all the personalDetails should be returned | ||
// minus the currently logged in user | ||
|
@@ -358,8 +358,8 @@ describe('OptionsListUtils', () => { | |
expect(results.userToInvite).not.toBe(null); | ||
expect(results.userToInvite.login).toBe('+15005550006'); | ||
|
||
// Test Concierge's existance in new group options | ||
results = OptionsListUtils.getNewGroupOptions(REPORTS_WITH_CONCIERGE, PERSONAL_DETAILS_WITH_CONCIERGE, ''); | ||
// Test Concierge's existence in new group options | ||
results = OptionsListUtils.getNewGroupOptions(REPORTS_WITH_CONCIERGE, PERSONAL_DETAILS_WITH_CONCIERGE); | ||
|
||
// Concierge is included in the results by default. We should expect all the personalDetails to show | ||
// (minus the 5 that are already showing and the currently logged in user) | ||
|