Skip to content

Commit

Permalink
fixes to test
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishabh committed Apr 1, 2022
1 parent fa65a59 commit d67647d
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,10 @@ public void invalidConfigArgonButUsingBcryptShouldAllowStartingServer() throws E
TestingProcessManager.TestingProcess process = TestingProcessManager.start(args);
assertNotNull(process.checkOrWaitForEvent(ProcessState.PROCESS_STATE.STARTED));

if (StorageLayer.getStorage(process.getProcess()).getType() != STORAGE_TYPE.SQL) {
return;
}

EmailPassword.signUp(process.getProcess(), "[email protected]", "somePassword");
EmailPassword.signIn(process.getProcess(), "[email protected]", "somePassword");

Expand Down

0 comments on commit d67647d

Please sign in to comment.