Skip to content

Commit

Permalink
reload
Browse files Browse the repository at this point in the history
  • Loading branch information
sgalsaleh committed Apr 23, 2024
1 parent 408138d commit 6a3182a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions e2e/playwright/tests/smoke-test/test.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,11 @@ test('smoke test', async ({ page }) => {
await page.locator('.replicated-select__option').getByText('Weekly', { exact: true }).click();
await expect(page.locator('.ConfigureUpdatesModal')).toContainText('Weekly');
await expect(page.locator('.ConfigureUpdatesModal')).toContainText('At 12:00 AM, only on Sunday');
await page.getByLabel('Enable automatic deployment').check();
await page.getByRole('button', { name: 'Update', exact: true }).click();
await expect(page.getByText('Automatically check for updates', { exact: true })).not.toBeVisible();
await page.waitForTimeout(2000);
await page.locator('span[data-tip="View deploy logs"]').first().click();
await validateDeployLogs(page, expect);
await page.reload();
await page.getByRole('link', { name: 'Dashboard' }).click();
await expect(page.getByText('App Name')).toBeVisible();
await expect(page.locator('.Dashboard--appIcon')).toBeVisible();
Expand Down

0 comments on commit 6a3182a

Please sign in to comment.