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

ftest #2332

Closed
wants to merge 6 commits into from
Closed

ftest #2332

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
7 changes: 6 additions & 1 deletion .github/workflows/ftest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ jobs:
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
run: |
Expand Down Expand Up @@ -130,7 +135,7 @@ jobs:
env:
RUN_ALL: false
BAIL: 0
run: mvn -ntp install -Pftest -DskipInstall
run: mvn -ntp install -Pftest -DskipInstall -Dcucumber.options="--timeout 100000"

- name: Archive cucumber reports
if: ${{ always() }}
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 = match[1];
const checkVersion = '128';
try {
done = fetch(`https://googlechromelabs.github.io/chrome-for-testing/LATEST_RELEASE_${checkVersion}`).then(
(response) => {
Expand Down
Loading