Skip to content

Commit 1eee4e3

Browse files
wattachai-lsegdependabot[bot]bualoy-napatprima-lseg
authored
chore: bumps playwright from 1.47.2 to 1.49.1 (#1241)
* chore: bump playwright from 1.47.2 to 1.48.1 Bumps [playwright](https://github.com/microsoft/playwright) from 1.47.2 to 1.48.1. - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.47.2...v1.48.1) --- updated-dependencies: - dependency-name: playwright dependency-type: indirect update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * test(combo-box): remove opened before interaction * test(combo-box): add timeout before query on interaction * test(combo-box): import atimeout * test(combo-box): query list item * test(combo-box): remove lint * test(combo-box): log list item * test(combo-box): add expect output * chore: update playwright 1.49.0 * test: use the new headless chrome with playwright * test: revert debugging changes --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Napat Bualoy <91940544+bualoy-napat@users.noreply.github.com> Co-authored-by: prima.s <prima.sirinapapant@lseg.com>
1 parent 8c283b2 commit 1eee4e3

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

.github/actions/run-test/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ runs:
4343
shell: bash
4444
run: |
4545
echo 'Installing Playwright'
46-
npx playwright install --with-deps > /dev/null
46+
npx playwright install --no-shell --with-deps > /dev/null
4747
npx playwright --version
4848
4949
- name: Test

package-lock.json

Lines changed: 9 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web-test-runner.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ export default {
3939
product: 'chromium',
4040
createBrowserContext: ({ browser }) => browser.newContext({ ignoreHTTPSErrors: true }),
4141
launchOptions: {
42-
args: ['--incognito', '--allow-insecure-localhost']
42+
args: ['--incognito', '--allow-insecure-localhost'],
43+
// opt for the new headless chrome - https://github.com/microsoft/playwright/issues/33566
44+
channel: 'chromium'
4345
}
4446
}),
4547
playwrightLauncher({

0 commit comments

Comments
 (0)