Skip to content

Commit 51e0018

Browse files
authored
Fix deploy-upgrade playwright test flakiness (#1376)
1 parent ec277d5 commit 51e0018

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
@@ -7,7 +7,7 @@ test('deploy upgrade', async ({ page }) => {
77
await page.getByRole('link', { name: 'Version history', exact: true }).click();
88
await page.locator('.available-update-row', { hasText: process.env.APP_UPGRADE_VERSION }).getByRole('button', { name: 'Deploy', exact: true }).click();
99
const iframe = page.frameLocator('#upgrade-service-iframe');
10-
await expect(iframe.locator('h3')).toContainText('The First Config Group', { timeout: 20 * 1000 });
10+
await expect(iframe.locator('h3')).toContainText('The First Config Group', { timeout: 60 * 1000 }); // can take time to download the kots binary
1111
await expect(iframe.locator('input[type="text"]')).toHaveValue('initial-hostname.com');
1212
await iframe.locator('input[type="text"]').click();
1313
await iframe.locator('input[type="text"]').fill('updated-hostname.com');

0 commit comments

Comments
 (0)