Skip to content

Commit 408138d

Browse files
committed
another try
1 parent 309d1a6 commit 408138d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

e2e/playwright/tests/smoke-test/test.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ test('smoke test', async ({ page }) => {
4242
await page.getByLabel('Enable automatic deployment').check();
4343
await page.getByRole('button', { name: 'Update', exact: true }).click();
4444
await expect(page.getByText('Automatically check for updates', { exact: true })).not.toBeVisible();
45+
await page.waitForTimeout(2000);
4546
await page.locator('span[data-tip="View deploy logs"]').first().click();
4647
await validateDeployLogs(page, expect);
4748
await page.getByRole('link', { name: 'Dashboard' }).click();
4849
await expect(page.getByText('App Name')).toBeVisible();
4950
await expect(page.locator('.Dashboard--appIcon')).toBeVisible();
5051
await expect(page.locator('p').filter({ hasText: 'License' })).toBeVisible();
51-
await page.waitForTimeout(2000);
5252
await page.getByText('Configure automatic updates').click();
5353
await expect(page.locator('.ConfigureUpdatesModal')).toContainText('Weekly');
5454
await expect(page.locator('.ConfigureUpdatesModal')).toContainText('At 12:00 AM, only on Sunday');

0 commit comments

Comments
 (0)