Skip to content

Commit 9bfed6d

Browse files
committed
ci(e2e): fix e2e tests
1 parent 07b7455 commit 9bfed6d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
run: cd e2e && npm ci
6262

6363
- name: Install Playwright browsers
64-
run: cd e2e && npx playwright install chromium --with-deps
64+
run: cd e2e && npx playwright install chromium webkit --with-deps
6565

6666
- name: Run e2e tests
6767
run: cd e2e && npx playwright test

e2e/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default defineConfig({
1111
forbidOnly: !!process.env.CI,
1212
retries: process.env.CI ? 1 : 0,
1313
workers: 1,
14-
reporter: process.env.CI ? "github" : "html",
14+
reporter: process.env.CI ? [["github"], ["html"]] : "html",
1515
timeout: 60_000,
1616
expect: {
1717
timeout: 10_000,

0 commit comments

Comments
 (0)