diff --git a/.changeset/swift-dolphins-thank.md b/.changeset/swift-dolphins-thank.md new file mode 100644 index 00000000000..7390094ae06 --- /dev/null +++ b/.changeset/swift-dolphins-thank.md @@ -0,0 +1,4 @@ +--- + +--- + diff --git a/integration/presets/envs.ts b/integration/presets/envs.ts index d9a617739b3..844b91663d6 100644 --- a/integration/presets/envs.ts +++ b/integration/presets/envs.ts @@ -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); diff --git a/integration/testUtils/usersService.ts b/integration/testUtils/usersService.ts index 2d28af6cfa7..8c95b000720 100644 --- a/integration/testUtils/usersService.ts +++ b/integration/testUtils/usersService.ts @@ -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); }, }; diff --git a/integration/tests/session-tasks-sign-in-reset-password.test.ts b/integration/tests/session-tasks-sign-in-reset-password.test.ts index 53f032d80b4..2a61c446581 100644 --- a/integration/tests/session-tasks-sign-in-reset-password.test.ts +++ b/integration/tests/session-tasks-sign-in-reset-password.test.ts @@ -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(); @@ -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);