diff --git a/e2e/playwright/playwright.config.ts b/e2e/playwright/playwright.config.ts index 1ff9396059..edc37473bf 100644 --- a/e2e/playwright/playwright.config.ts +++ b/e2e/playwright/playwright.config.ts @@ -22,7 +22,7 @@ export default defineConfig({ /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: [ ['line'], - ['html', { open: process.env.CI ? 'never' : 'on-failure' }], + ['html', { open: 'never' }], ], /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { diff --git a/e2e/playwright/tests/smoke-test/test.spec.ts b/e2e/playwright/tests/smoke-test/test.spec.ts index 1bc0e24fc6..6fe013fdcb 100644 --- a/e2e/playwright/tests/smoke-test/test.spec.ts +++ b/e2e/playwright/tests/smoke-test/test.spec.ts @@ -41,6 +41,7 @@ test('smoke test', async ({ page }) => { await expect(page.locator('.ConfigureUpdatesModal')).toContainText('At 12:00 AM, only on Sunday'); 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();