Skip to content

Commit b85862b

Browse files
fix(ci): install webkit browser for Playwright E2E tests
Playwright config defaults to E2E_MODE='fast' which runs WebKit-only tests, but CI was installing chromium. This caused all 419 tests to fail immediately since the required browser wasn't available. Changed CI to install webkit to match the default test configuration.
1 parent 2f64739 commit b85862b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: npm ci
3131

3232
- name: Install Playwright browsers
33-
run: npx playwright install --with-deps chromium
33+
run: npx playwright install --with-deps webkit
3434

3535
- name: Run Playwright tests
3636
working-directory: ./app/frontend

0 commit comments

Comments
 (0)