Skip to content

Commit 8515c2d

Browse files
authored
Increase preflight checks timeout on upgrade (#2243)
1 parent a05a9d4 commit 8515c2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

e2e/playwright/tests/deploy-upgrade/test.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ async function fillConfigForm(iframe: FrameLocator) {
3535

3636
async function handlePreflightChecks(iframe: FrameLocator) {
3737
await expect(iframe.getByText('Preflight checks', { exact: true })).toBeVisible({ timeout: 10 * 1000 });
38-
await expect(iframe.getByRole('button', { name: 'Rerun' })).toBeVisible({ timeout: 10 * 1000 });
38+
await expect(iframe.getByRole('button', { name: 'Rerun' })).toBeVisible({ timeout: 30 * 1000 });
3939
await expect(iframe.locator('#app')).toContainText('The Volume Snapshots CRD exists');
4040
await expect(iframe.getByRole('button', { name: 'Back: Config' })).toBeVisible();
4141
await iframe.getByRole('button', { name: 'Next: Confirm and deploy' }).click();

0 commit comments

Comments
 (0)