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: bump playwright from 1.47.2 to 1.49.0 #1227

Open
wants to merge 13 commits into
base: v7
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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/run-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ runs:
shell: bash
run: |
echo 'Installing Playwright'
npx playwright install --with-deps > /dev/null
npx playwright install --no-shell --with-deps > /dev/null
npx playwright --version

- name: Test
Expand Down
16 changes: 9 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion web-test-runner.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ export default {
product: 'chromium',
createBrowserContext: ({ browser }) => browser.newContext({ ignoreHTTPSErrors: true }),
launchOptions: {
args: ['--incognito', '--allow-insecure-localhost']
args: ['--incognito', '--allow-insecure-localhost'],
// opt for the new headless chrome - https://github.com/microsoft/playwright/issues/33566
channel: 'chromium'
}
}),
playwrightLauncher({
Expand Down
Loading