diff --git a/integration/tests/next-quickstart-keyless.test.ts b/integration/tests/next-quickstart-keyless.test.ts index ff4fac4e5a9..01fba38bc82 100644 --- a/integration/tests/next-quickstart-keyless.test.ts +++ b/integration/tests/next-quickstart-keyless.test.ts @@ -56,6 +56,7 @@ test.describe('Keyless mode @quickstart', () => { }); test('Toggle collapse popover and claim.', async ({ page, context }) => { + test.skip(process.env.E2E_STAGING === '1', 'Staging dashboard is behind Vercel SSO'); await testToggleCollapsePopoverAndClaim({ page, context, app, dashboardUrl, framework: 'nextjs' }); }); @@ -63,6 +64,7 @@ test.describe('Keyless mode @quickstart', () => { page, context, }) => { + test.skip(process.env.E2E_STAGING === '1', 'Staging dashboard is behind Vercel SSO'); await mockClaimedInstanceEnvironmentCall(page); const u = createTestUtils({ app, page, context }); await u.page.goToAppHome(); diff --git a/integration/tests/react-router/keyless.test.ts b/integration/tests/react-router/keyless.test.ts index a2605806778..87e7b00ef18 100644 --- a/integration/tests/react-router/keyless.test.ts +++ b/integration/tests/react-router/keyless.test.ts @@ -39,6 +39,7 @@ test.describe('Keyless mode @react-router', () => { }); test('Toggle collapse popover and claim.', async ({ page, context }) => { + test.skip(process.env.E2E_STAGING === '1', 'Staging dashboard is behind Vercel SSO'); await testToggleCollapsePopoverAndClaim({ page, context, app, dashboardUrl, framework: 'react-router' }); }); @@ -46,6 +47,7 @@ test.describe('Keyless mode @react-router', () => { page, context, }) => { + test.skip(process.env.E2E_STAGING === '1', 'Staging dashboard is behind Vercel SSO'); await testClaimedAppWithMissingKeys({ page, context, app, dashboardUrl }); }); diff --git a/integration/tests/tanstack-start/keyless.test.ts b/integration/tests/tanstack-start/keyless.test.ts index a2605806778..87e7b00ef18 100644 --- a/integration/tests/tanstack-start/keyless.test.ts +++ b/integration/tests/tanstack-start/keyless.test.ts @@ -39,6 +39,7 @@ test.describe('Keyless mode @react-router', () => { }); test('Toggle collapse popover and claim.', async ({ page, context }) => { + test.skip(process.env.E2E_STAGING === '1', 'Staging dashboard is behind Vercel SSO'); await testToggleCollapsePopoverAndClaim({ page, context, app, dashboardUrl, framework: 'react-router' }); }); @@ -46,6 +47,7 @@ test.describe('Keyless mode @react-router', () => { page, context, }) => { + test.skip(process.env.E2E_STAGING === '1', 'Staging dashboard is behind Vercel SSO'); await testClaimedAppWithMissingKeys({ page, context, app, dashboardUrl }); });