Fixes shell command syntax error

Corrects a syntax error in the shell command used to move Playwright reports, ensuring the command executes as intended.
This commit is contained in:
maguire-arman 2025-07-10 13:49:24 -04:00
parent ac92600b28
commit 998ccfb287

View file

@ -253,7 +253,7 @@ jobs:
-e JIRA_CARD_NUMBER="$JIRA_CARD_NUMBER" \
${{ parameters.dockerImageName }}:${{ parameters.imageTag }} \
echo 'Moving Playwright reports out of subfolders...'; \
find ./playwright-reports/ -mindepth 2 -type f -exec mv {} ./playwright-reports/ \; \
find ./playwright-reports/ -mindepth 2 -type f -exec mv {} ./playwright-reports/ \; ; \
echo 'Merging reports...'; \
PLAYWRIGHT_JUNIT_OUTPUT_DIR='/app/test-results' PLAYWRIGHT_JUNIT_OUTPUT_NAME='junit_results.xml' npx --prefix $PLAYWRIGHT_PATH playwright merge-reports ./playwright-reports; \
echo 'Contents of ortoni-report:' && ls ./ortoni-report; \