Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .changeset/swift-dolphins-thank.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---

---

1 change: 0 additions & 1 deletion integration/presets/envs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ const withSessionTasks = base
const withSessionTasksResetPassword = base
.clone()
.setId('withSessionTasksResetPassword')
.setEnvVariable('private', 'CLERK_API_URL', 'https://api.clerkstage.dev')
.setEnvVariable('private', 'CLERK_SECRET_KEY', instanceKeys.get('with-session-tasks-reset-password').sk)
.setEnvVariable('public', 'CLERK_PUBLISHABLE_KEY', instanceKeys.get('with-session-tasks-reset-password').pk);

Expand Down
2 changes: 1 addition & 1 deletion integration/testUtils/usersService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export const createUserService = (clerkClient: ClerkClient) => {
} satisfies FakeAPIKey;
},
setPasswordCompromised: async (userId: string) => {
await clerkClient.users.__experimental_passwordCompromised(userId);
await clerkClient.users.__experimental_setPasswordCompromised(userId);
},
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withSessionTasksResetPassword
await app.teardown();
});

test.skip('resolve both reset password and organization selection tasks after sign-in', async ({
page,
context,
}) => {
test('resolve both reset password and organization selection tasks after sign-in', async ({ page, context }) => {
const u = createTestUtils({ app, page, context });

const user = u.services.users.createFakeUser();
Expand Down Expand Up @@ -64,7 +61,7 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withSessionTasksResetPassword
await u.services.organizations.deleteAll();
});

test.skip('sign-in with email and resolve the reset password task', async ({ page, context }) => {
test('sign-in with email and resolve the reset password task', async ({ page, context }) => {
const u = createTestUtils({ app, page, context });
const user = u.services.users.createFakeUser();
const createdUser = await u.services.users.createBapiUser(user);
Expand Down