diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index c4266a7..3faf925 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -34,5 +34,5 @@ jobs: if: always() with: name: playwright-report - path: playwright-report/ + path: e2e/test-reports retention-days: 30 diff --git a/playwright.config.ts b/playwright.config.ts index a2aa99b..620e1fc 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -48,25 +48,25 @@ export default defineConfig({ use: { ...devices["Desktop Chrome"] }, }, - { - name: "firefox", - use: { ...devices["Desktop Firefox"] }, - }, + // { + // name: "firefox", + // use: { ...devices["Desktop Firefox"] }, + // }, - { - name: "webkit", - use: { ...devices["Desktop Safari"] }, - }, + // { + // name: "webkit", + // use: { ...devices["Desktop Safari"] }, + // }, /* Test against mobile viewports. */ { name: "Mobile Chrome", use: { ...devices["Pixel 5"] }, }, - { - name: "Mobile Safari", - use: { ...devices["iPhone 12"] }, - }, + // { + // name: "Mobile Safari", + // use: { ...devices["iPhone 12"] }, + // }, ], /* Run your local dev server before starting the tests */