diff --git a/.github/workflows/test-win.yaml b/.github/workflows/test-win.yaml index f06c932d..13c4e255 100644 --- a/.github/workflows/test-win.yaml +++ b/.github/workflows/test-win.yaml @@ -33,5 +33,6 @@ jobs: path: | test/**/test-results/ test/**/actual-reports/ + test/**/blob-report/ retention-days: 1 if-no-files-found: ignore diff --git a/test/reporter-cucumber-html/playwright.config.ts b/test/reporter-cucumber-html/playwright.config.ts index 89f6d471..b590a55a 100644 --- a/test/reporter-cucumber-html/playwright.config.ts +++ b/test/reporter-cucumber-html/playwright.config.ts @@ -12,6 +12,7 @@ export default defineConfig({ fullyParallel: true, reporter: [ ['dot'], + ['blob'], cucumberReporter('message', { outputFile: 'actual-reports/message.ndjson' }), cucumberReporter('html', { outputFile: 'actual-reports/report.html' }), ],