From 998ccfb287d7534182c13513f77ee24dc334bb7b Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Thu, 10 Jul 2025 13:49:24 -0400 Subject: [PATCH] Fixes shell command syntax error Corrects a syntax error in the shell command used to move Playwright reports, ensuring the command executes as intended. --- temp/playwright-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/temp/playwright-test.yml b/temp/playwright-test.yml index 2e9d95831..9fc767367 100644 --- a/temp/playwright-test.yml +++ b/temp/playwright-test.yml @@ -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; \