We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07b7455 commit 9bfed6dCopy full SHA for 9bfed6d
2 files changed
.github/workflows/e2e.yml
@@ -61,7 +61,7 @@ jobs:
61
run: cd e2e && npm ci
62
63
- name: Install Playwright browsers
64
- run: cd e2e && npx playwright install chromium --with-deps
+ run: cd e2e && npx playwright install chromium webkit --with-deps
65
66
- name: Run e2e tests
67
run: cd e2e && npx playwright test
e2e/playwright.config.ts
@@ -11,7 +11,7 @@ export default defineConfig({
11
forbidOnly: !!process.env.CI,
12
retries: process.env.CI ? 1 : 0,
13
workers: 1,
14
- reporter: process.env.CI ? "github" : "html",
+ reporter: process.env.CI ? [["github"], ["html"]] : "html",
15
timeout: 60_000,
16
expect: {
17
timeout: 10_000,
0 commit comments