Skip to content

Commit 6a3182a

Browse files
committed
reload
1 parent 408138d commit 6a3182a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,11 @@ test('smoke test', async ({ page }) => {
3939
await page.locator('.replicated-select__option').getByText('Weekly', { exact: true }).click();
4040
await expect(page.locator('.ConfigureUpdatesModal')).toContainText('Weekly');
4141
await expect(page.locator('.ConfigureUpdatesModal')).toContainText('At 12:00 AM, only on Sunday');
42-
await page.getByLabel('Enable automatic deployment').check();
4342
await page.getByRole('button', { name: 'Update', exact: true }).click();
4443
await expect(page.getByText('Automatically check for updates', { exact: true })).not.toBeVisible();
45-
await page.waitForTimeout(2000);
4644
await page.locator('span[data-tip="View deploy logs"]').first().click();
4745
await validateDeployLogs(page, expect);
46+
await page.reload();
4847
await page.getByRole('link', { name: 'Dashboard' }).click();
4948
await expect(page.getByText('App Name')).toBeVisible();
5049
await expect(page.locator('.Dashboard--appIcon')).toBeVisible();

0 commit comments

Comments
 (0)