Skip to content
Closed
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
2 changes: 2 additions & 0 deletions integration/tests/next-quickstart-keyless.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,15 @@ 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' });
});

test('Lands on claimed application with missing explicit keys, expanded by default, click to get keys from dashboard.', async ({
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();
Expand Down
2 changes: 2 additions & 0 deletions integration/tests/react-router/keyless.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,15 @@ 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' });
});

test('Lands on claimed application with missing explicit keys, expanded by default, click to get keys from dashboard.', async ({
page,
context,
}) => {
test.skip(process.env.E2E_STAGING === '1', 'Staging dashboard is behind Vercel SSO');
await testClaimedAppWithMissingKeys({ page, context, app, dashboardUrl });
});

Expand Down
2 changes: 2 additions & 0 deletions integration/tests/tanstack-start/keyless.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,15 @@ 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' });
});

test('Lands on claimed application with missing explicit keys, expanded by default, click to get keys from dashboard.', async ({
page,
context,
}) => {
test.skip(process.env.E2E_STAGING === '1', 'Staging dashboard is behind Vercel SSO');
await testClaimedAppWithMissingKeys({ page, context, app, dashboardUrl });
});

Expand Down
Loading