Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,9 @@ public void testSearchingForUsersWithMultipleInputsForEachField() throws Excepti
// create emailpassword user
ArrayList<String> userIds = new ArrayList<>();
userIds.add(EmailPassword.signUp(process.getProcess(), "test@example.com", "testPass123").id);
Thread.sleep(50);
userIds.add(EmailPassword.signUp(process.getProcess(), "abc@example.com", "testPass123").id);
Thread.sleep(50);

// search with multiple inputs to email
{
Expand All @@ -216,7 +218,9 @@ public void testSearchingForUsersWithMultipleInputsForEachField() throws Excepti

// create thirdparty user
userIds.add(ThirdParty.signInUp(process.getProcess(), "testpid", "test", "test@example.com").user.id);
Thread.sleep(50);
userIds.add(ThirdParty.signInUp(process.getProcess(), "newtestpid", "test123", "test@example.com").user.id);
Thread.sleep(50);
// search with multiple inputs to provider
{
HashMap<String, String> params = new HashMap<>();
Expand All @@ -243,6 +247,7 @@ public void testSearchingForUsersWithMultipleInputsForEachField() throws Excepti
createCodeResponse.deviceIdHash,
createCodeResponse.userInputCode, null).user.id);
}
Thread.sleep(50);
{
CreateCodeResponse createCodeResponse = Passwordless.createCode(process.getProcess(), "test2@example.com",
"+911987654321",
Expand All @@ -251,6 +256,7 @@ public void testSearchingForUsersWithMultipleInputsForEachField() throws Excepti
createCodeResponse.deviceIdHash,
createCodeResponse.userInputCode, null).user.id);
}
Thread.sleep(50);

// search with multiple inputs to phone
{
Expand Down