Skip to content

Commit

Permalink
WEBUI-1583: ftest pipeline failing in nuxeo-web-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuljain-dev committed Sep 24, 2024
1 parent 6d872dd commit 87ac9f5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ftest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,6 @@ jobs:
with:
distribution: 'zulu'
java-version: '17'

- name: Install google chrome 128.0.6613.137
run: |
wget https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_128.0.6613.137-1_amd64.deb
apt install -y --allow-downgrades ./google-chrome-stable_128.0.6613.137-1_amd64.deb

- name: Determine nuxeo-elements branch to link
id: pick_nuxeo_elements_branch
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxeo-web-ui-ftest/scripts/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ if (process.env.DRIVER_VERSION == null) {
console.log(`${version} detected.`);
const match = version && version.match(/([0-9]+)\./);
if (match) {
const checkVersion = 128; // fixed chrome version to avoid functional test breaking
const checkVersion = match[1];
try {
done = fetch(`https://googlechromelabs.github.io/chrome-for-testing/LATEST_RELEASE_${checkVersion}`).then(
(response) => {
Expand Down

0 comments on commit 87ac9f5

Please sign in to comment.