From 6b410c432cf317470108c884c9d64fc603983622 Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Thu, 10 Jul 2025 10:27:10 -0400 Subject: [PATCH] Adds debug logging for test execution Enhances debugging capabilities during test execution by adding logging to capture directory contents. This helps diagnose potential issues related to file access or environment setup within the test environment. --- temp/playwright-test.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/temp/playwright-test.yml b/temp/playwright-test.yml index 9d82ab736..5ebff2a0a 100644 --- a/temp/playwright-test.yml +++ b/temp/playwright-test.yml @@ -245,6 +245,17 @@ jobs: JIRA_CARD_NUMBER="${branch_name##*/}" echo "Extracted JIRA Card number: '$JIRA_CARD_NUMBER'" export PLAYWRIGHT_PATH="${{ parameters.playwrightTestsPath }}" + + echo "📁 Current directory: $(pwd)" + echo "📂 Contents of current directory:" + ls -al + + echo "📂 Contents of ./ortoni-report (if exists):" + ls -al ./ortoni-report || echo "No ortoni-report directory found" + + echo "📂 Contents of /app/test-results (if mounted later):" + ls -al /app/test-results || echo "No /app/test-results directory found" + container_id=$(docker create \ --ipc=host \ --env-file "${{ parameters.envFileName }}" \