Skip to content

Commit

Permalink
added the mobile-header id back to fix breaking tests; update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 5, 2024
1 parent 49f4671 commit 6efcc68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr_ci_playwright_e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ jobs:
MAX_ATTEMPTS=3
WAIT_TIME=30
ATTEMPT=1
while [[ $ATTEMPT -le $MAX_ATTEMPTS ]]
do
while [[ $ATTEMPT -le $MAX_ATTEMPTS ]]; do
echo "Attempt $ATTEMPT of $MAX_ATTEMPTS"
yarn wait-on http://localhost:3000 --timeout ${WAIT_TIME}000
if [[ $? -eq 0 ]]; then
STATUS=$?
if [[ $STATUS -eq 0 ]]; then
echo "Server is ready!"
break
else
Expand Down
2 changes: 1 addition & 1 deletion frontend/components/header/HeaderWebsite.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}"
>
<!-- MARK: Mobile Header -->
<div v-if="!aboveMediumBP" class="flex px-4 py-3">
<div v-if="!aboveMediumBP" id="#mobile-header" class="flex px-4 py-3">
<div class="z-0 mx-auto">
<div
class="absolute left-0 top-0 z-0 flex h-full w-full items-center justify-center"
Expand Down

0 comments on commit 6efcc68

Please sign in to comment.