From 2a7c1b201dd1957866dd003b7978f3a4238696c2 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 10 Jun 2024 18:22:42 +0200 Subject: [PATCH] fix config --- tests/electron/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/electron/playwright.config.ts b/tests/electron/playwright.config.ts index b630b38e56..3842386a57 100644 --- a/tests/electron/playwright.config.ts +++ b/tests/electron/playwright.config.ts @@ -35,7 +35,7 @@ const config: Config = { reporter: process.env.CI ? [ ['dot'], ['json', { outputFile: path.join(outputDir, 'report.json') }], - ['blob', { fileName: `${process.env.PWTEST_BOT_NAME}.zip` }], + ['blob', { fileName: path.join(__dirname, '../../blob-report/', `${process.env.PWTEST_BOT_NAME}.zip`) }], ] : 'line', projects: [], globalSetup: './globalSetup.ts'