From 87e0b915439aab836842d2f133fff7e14ca6b0fe Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Mon, 17 Mar 2025 19:51:04 -0700 Subject: [PATCH] chore: Fix pw issues --- .github/workflows/tests.yml | 2 +- playwright.config.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b333b6bb..a425c4f9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: name: 'Playwright Tests' runs-on: ubuntu-latest container: - image: mcr.microsoft.com/playwright:v1.42.1-jammy + image: mcr.microsoft.com/playwright:v1.51.1-jammy steps: - name: Checkout diff --git a/playwright.config.ts b/playwright.config.ts index 751060e8..fff68788 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -5,8 +5,8 @@ export default defineConfig({ fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, - workers: process.env.CI ? 1 : undefined, - reporter: 'html', + workers: process.env.CI ? 3 : undefined, + reporter: process.env.CI ? [['github'], ['list']] : 'list', use: { baseURL: 'http://localhost:3000', trace: 'on-first-retry',