We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec277d5 commit 51e0018Copy full SHA for 51e0018
e2e/playwright/tests/deploy-upgrade/test.spec.ts
@@ -7,7 +7,7 @@ test('deploy upgrade', async ({ page }) => {
7
await page.getByRole('link', { name: 'Version history', exact: true }).click();
8
await page.locator('.available-update-row', { hasText: process.env.APP_UPGRADE_VERSION }).getByRole('button', { name: 'Deploy', exact: true }).click();
9
const iframe = page.frameLocator('#upgrade-service-iframe');
10
- await expect(iframe.locator('h3')).toContainText('The First Config Group', { timeout: 20 * 1000 });
+ await expect(iframe.locator('h3')).toContainText('The First Config Group', { timeout: 60 * 1000 }); // can take time to download the kots binary
11
await expect(iframe.locator('input[type="text"]')).toHaveValue('initial-hostname.com');
12
await iframe.locator('input[type="text"]').click();
13
await iframe.locator('input[type="text"]').fill('updated-hostname.com');
0 commit comments