From 74aab716ea99ea0c8913aba01a931c42067c3ad1 Mon Sep 17 00:00:00 2001 From: Bill Gardner Date: Fri, 17 Jul 2026 18:12:21 -0400 Subject: [PATCH] [MM-69793] Port blob reporter to v2 branch Switch the CI reporter from html to blob in playwright.config.ts and copy blob-report out of the container in run.sh, matching the fix already applied to main in PR #1244. --- e2e/playwright.config.ts | 2 +- e2e/scripts/run.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/playwright.config.ts b/e2e/playwright.config.ts index fff1b4f0e..52cb756a3 100644 --- a/e2e/playwright.config.ts +++ b/e2e/playwright.config.ts @@ -71,7 +71,7 @@ const config: PlaywrightTestConfig = { }, ], reporter: process.env.CI ? [ - ['html', {open: 'never'}], + ['blob'], ['json', {outputFile: 'pw-results.json'}], ['list'], ] : 'list', diff --git a/e2e/scripts/run.sh b/e2e/scripts/run.sh index 8c4e212c2..df1523d9a 100755 --- a/e2e/scripts/run.sh +++ b/e2e/scripts/run.sh @@ -101,7 +101,7 @@ docker run -d --name playwright-e2e \ docker logs -f playwright-e2e docker cp playwright-e2e:/usr/src/calls-e2e/test-results results/test-results-${CI_NODE_INDEX} -docker cp playwright-e2e:/usr/src/calls-e2e/playwright-report results/playwright-report-${CI_NODE_INDEX} +docker cp playwright-e2e:/usr/src/calls-e2e/blob-report results/blob-report-${CI_NODE_INDEX} docker cp playwright-e2e:/usr/src/calls-e2e/pw-results.json results/pw-results-${CI_NODE_INDEX}.json ## Dumping services logs to be uploaded as artifacts in case of failures.