From cafdd2045a2c7fe0a5cd3eac67b79ae95a964646 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbyn=C4=9Bk=20Dr=C3=A1pela?= <61500440+zdrapela@users.noreply.github.com> Date: Mon, 25 Nov 2024 19:02:25 +0100 Subject: [PATCH] chore(ci): playwright install only chromium (#1983) * chore(ci): playwright install only chromium --- .ibm/pipelines/openshift-ci-tests.sh | 2 +- docs/e2e-tests/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ibm/pipelines/openshift-ci-tests.sh b/.ibm/pipelines/openshift-ci-tests.sh index bee16921ca..8c7941f729 100755 --- a/.ibm/pipelines/openshift-ci-tests.sh +++ b/.ibm/pipelines/openshift-ci-tests.sh @@ -261,7 +261,7 @@ run_tests() { project=${project%-pr-*} # Remove -pr- suffix if any set for main branchs pr's. cd "${DIR}/../../e2e-tests" yarn install - yarn playwright install + yarn playwright install chromium Xvfb :99 & export DISPLAY=:99 diff --git a/docs/e2e-tests/README.md b/docs/e2e-tests/README.md index 3c45a28a86..9eac7c2117 100644 --- a/docs/e2e-tests/README.md +++ b/docs/e2e-tests/README.md @@ -29,7 +29,7 @@ yarn install The Playwright browsers should be installed automatically via the `postinstall` script in `package.json`. If not, you can manually install them: ```bash -yarn playwright install +yarn playwright install chromium ``` ### Adding a Test