Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(e2e): Added support for the 'chrome-dev' channel in Playwright FE-803 #1677

Merged
merged 19 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
651c0dd
chore: Added support for the 'chrome-dev' channel in Playwright confi…
nelitow Dec 2, 2024
46a2e3f
chore: update Playwright installation in CI workflow
nelitow Dec 2, 2024
988e681
chore: update Playwright configuration to use 'chrome-beta' channel a…
nelitow Dec 2, 2024
3f4e595
chore: update Playwright installation in CI workflow to separate brow…
nelitow Dec 2, 2024
197e1c4
chore: update Playwright installation in CI workflow to include 'chro…
nelitow Dec 2, 2024
5f03b96
undo changes
nelitow Dec 2, 2024
ae9d2d4
Revert "undo changes"
nelitow Dec 3, 2024
8aefb85
chore: update Playwright configuration and CI workflow to remove 'chr…
nelitow Dec 3, 2024
8183d07
Update playwright.config.ts
nelitow Dec 3, 2024
3da8e4b
Merge branch 'master' into nj/tests/run-tets-on-chrome-dev
nelitow Dec 4, 2024
7f98ae5
Revert "Update playwright.config.ts"
nelitow Dec 4, 2024
c5f809b
Merge branch 'master' into nj/tests/run-tets-on-chrome-dev
nelitow Dec 5, 2024
5fd09a2
chore: enhance E2E testing setup by adding Chrome project and updatin…
nelitow Dec 6, 2024
b86fd0f
Merge branch 'master' into nj/tests/run-tets-on-chrome-dev
nelitow Dec 6, 2024
17eb2ec
feat: enhance E2E testing setup with browser input and new CI workflows
nelitow Dec 6, 2024
2620c75
Merge branch 'master' into nj/tests/run-tets-on-chrome-dev
nelitow Dec 6, 2024
6032b22
fix: adjust Playwright retries based on CI environment
nelitow Dec 6, 2024
20d715d
Merge branch 'nj/tests/run-tets-on-chrome-dev' of https://github.com/…
nelitow Dec 6, 2024
90cafd4
fix: remove maxFailures setting in Playwright config for E2E tests
nelitow Dec 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -28,7 +28,7 @@ runs:
# E2E tests running with Playwright
- name: Install Playwright Browsers
shell: bash
run: npx playwright install --with-deps chromium
run: npx playwright install --with-deps chrome-beta

- name: Run E2E Contract Tests
shell: bash
Expand Down
7 changes: 5 additions & 2 deletions packages/e2e-contract-tests/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,11 @@ const config: PlaywrightTestConfig = defineConfig({
},
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
name: 'chrome-beta',
use: {
channel: 'chrome-beta',
...devices['Desktop Chrome'],
},
},
],
});
Expand Down
Loading