diff --git a/.github/workflows/e2e_tests.yml b/.github/workflows/e2e_tests.yml index 93f6c0b8d7..a8f946a437 100644 --- a/.github/workflows/e2e_tests.yml +++ b/.github/workflows/e2e_tests.yml @@ -116,7 +116,7 @@ jobs: - name: Run Playwright tests id: test-playwright - run: cd end2end && npx playwright test --project=chromium + run: cd end2end && npx playwright test --project=end2end - name: Notify in case of playwright failure, from mainstream branches only uses: peter-evans/commit-comment@v3 diff --git a/tests/end2end/playwright.config.ts b/tests/end2end/playwright.config.ts index ea7e5f5b1a..bf4f05bd1a 100644 --- a/tests/end2end/playwright.config.ts +++ b/tests/end2end/playwright.config.ts @@ -68,6 +68,14 @@ export default defineConfig({ dependencies: ['setup'], }, + { + name: 'end2end', + use: { + browserName: 'chromium', + }, + dependencies: ['setup'], + testIgnore: '**/localonly/**', + }, /* Test against mobile viewports. */ // { // name: 'Mobile Chrome',