Skip to content

Commit

Permalink
feat(e2e): update Playwright browser installation to include Chromium…
Browse files Browse the repository at this point in the history
… alongside Chrome Beta
  • Loading branch information
nelitow committed Dec 9, 2024
1 parent 30d54e9 commit abb320d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/e2e-tests-contracts/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:
# E2E tests running with Playwright
- name: Install Playwright Browsers (${{ inputs.browser }})
shell: bash
run: npx playwright install --with-deps ${{ inputs.browser }}
run: npx playwright install --with-deps chrome-beta chromium

- name: Log to console all inputs
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-tests-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

# E2E tests running with Playwright
- name: Install Playwright Browsers
run: npx playwright install --with-deps chromium
run: npx playwright install --with-deps chrome-beta chromium

- name: Run E2E Tests
run: xvfb-run --auto-servernum -- pnpm test:e2e
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:

# E2E tests running with Playwright
- name: Install Playwright Browsers
run: npx playwright install --with-deps chrome-beta
run: npx playwright install --with-deps chrome-beta chromium

- name: Run E2E Tests
run: xvfb-run --auto-servernum -- pnpm test:e2e:beta
Expand Down

0 comments on commit abb320d

Please sign in to comment.