From e34d5d137bd1a7df8e47d143ddc92fda2e074f8a Mon Sep 17 00:00:00 2001 From: Greg Walker Date: Wed, 31 Jul 2024 08:02:11 -0500 Subject: [PATCH] just rely on playwright --- .github/actions/setup-playwright/action.yml | 2 -- playwright.config.js | 11 ++++++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/actions/setup-playwright/action.yml b/.github/actions/setup-playwright/action.yml index c6a3baf74..cfc9d6150 100644 --- a/.github/actions/setup-playwright/action.yml +++ b/.github/actions/setup-playwright/action.yml @@ -1,8 +1,6 @@ runs: using: composite steps: - - uses: browser-actions/setup-chrome@v1 - # - uses: browser-actions/setup-edge@v1 - uses: actions/setup-node@v4 with: node-version: 18 diff --git a/playwright.config.js b/playwright.config.js index d71c8275d..e65a3fbd4 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -19,7 +19,7 @@ const config = { /* Retry on CI only */ retries: process.env.CI ? 2 : 0, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ - reporter: process.env.CI ? 'blob' : 'html', + reporter: process.env.CI ? "blob" : "html", /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Base URL to use in actions like `await page.goto('/')`. */ @@ -55,10 +55,11 @@ const config = { // containerized. /* Test against branded browsers. */ - // { - // name: "Microsoft Edge", - // use: { ...devices["Desktop Edge"], channel: "msedge" }, - // }, + { + name: "Microsoft Edge", + use: { ...devices["Desktop Edge"], channel: "msedge" }, + }, + { name: "Google Chrome", use: { ...devices["Desktop Chrome"], channel: "chrome" },