Skip to content

Commit

Permalink
fix: fixing tests for CI (#1085)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamassoltesz authored Dec 26, 2024
1 parent 078d0d0 commit 4f648e7
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,9 @@ null, null, new JsonObject()
UserIdMapping.createUserIdMapping(process.getProcess(), app.toAppIdentifier(), appStorage,
plUser.user.getSupertokensUserId(), "externalid", null, false);

BulkImport.addUsers(app.toAppIdentifier(), appStorage, BulkImportTestUtils.generateBulkImportUser(1));
if(!StorageLayer.isInMemDb(process.getProcess())) {
BulkImport.addUsers(app.toAppIdentifier(), appStorage, BulkImportTestUtils.generateBulkImportUser(1));
}

OAuth.addOrUpdateClient(process.getProcess(), app.toAppIdentifier(), appStorage, "test", "secret123", false, false);
OAuth.createLogoutRequestAndReturnRedirectUri(process.getProcess(), app.toAppIdentifier(), appStorage, "test", "http://localhost", "sessionHandle", "state");
Expand Down

0 comments on commit 4f648e7

Please sign in to comment.