Skip to content
This repository was archived by the owner on Jun 30, 2021. It is now read-only.

Commit ddf1177

Browse files
authored
Merge pull request #246 from elgalu/fix-zalenium-job
Fix Zalenium job build
2 parents 97e6c04 + 6f36828 commit ddf1177

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/script_scenario_zalenium

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,21 +57,21 @@ if ! ls -la tmp_videos/dashboard.html; then
5757
fi
5858

5959
# There should be (2 * 3) videos
60-
if ! ls -la tmp_videos/zalenium-build/*.mp4; then
60+
if ! ls -la tmp_videos/zalenium_build/*.mp4; then
6161
ls -la tmp_videos/ || true
6262
die "Video files were not found in the expected folder" 120
6363
fi
6464

6565
export VID_EXT="mp4"
6666
export EXPECTED_VID_COUNT="6"
67-
export VID_FOLDER="tmp_videos/zalenium-build"
67+
export VID_FOLDER="tmp_videos/zalenium_build"
6868

6969
# Wait up to 40 seconds for the videos to be there
7070
if [ "$(uname)" = 'Darwin' ]; then
7171
./test/wait_videos_count
7272
else
7373
if ! timeout --foreground 40s test/wait_videos_count; then
74-
ls -la tmp_videos/zalenium-build/ || true
74+
ls -la tmp_videos/zalenium_build/ || true
7575
die "Waited a few seconds for '${EXPECTED_VID_COUNT}' '${VID_EXT}' videos to be at ${VID_FOLDER}"
7676
fi
7777
fi

0 commit comments

Comments
 (0)