diff --git a/.changeset/tiny-phones-open.md b/.changeset/tiny-phones-open.md new file mode 100644 index 00000000000..a845151cc84 --- /dev/null +++ b/.changeset/tiny-phones-open.md @@ -0,0 +1,2 @@ +--- +--- diff --git a/integration/README.md b/integration/README.md index e6165c54dd8..edbe148964c 100644 --- a/integration/README.md +++ b/integration/README.md @@ -63,7 +63,7 @@ Additionally, you can use two flags to configure how Playwright runs: For example: ```shell -pnpm test:integration:base -- --ui email.link.test.ts +pnpm test:integration:base --ui -- email.link.test.ts ``` > [!TIP] 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 ac303f19473..3835312a728 100644 --- a/integration/tests/session-tasks-sign-in-reset-password.test.ts +++ b/integration/tests/session-tasks-sign-in-reset-password.test.ts @@ -13,7 +13,10 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withSessionTasksResetPassword await app.teardown(); }); - test('resolve both reset password and organization selection tasks after sign-in', async ({ page, context }) => { + test.skip('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(); @@ -61,7 +64,7 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withSessionTasksResetPassword await u.services.organizations.deleteAll(); }); - test('sign-in with email and resolve the reset password task', async ({ page, context }) => { + test.skip('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);