From 4297dc43ae83fe3d93f22351cac0f3426113f4f7 Mon Sep 17 00:00:00 2001 From: Pierre Jacquier Date: Tue, 25 Feb 2025 11:49:58 -0500 Subject: [PATCH] Disable pw object.assign context (#5498) --- e2e/playwright/fixtures/fixtureSetup.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e2e/playwright/fixtures/fixtureSetup.ts b/e2e/playwright/fixtures/fixtureSetup.ts index d976a82b5..6b5778d3f 100644 --- a/e2e/playwright/fixtures/fixtureSetup.ts +++ b/e2e/playwright/fixtures/fixtureSetup.ts @@ -101,7 +101,8 @@ export class AuthenticatedTronApp { // running against electron applications. // The timeline is still broken but failure screenshots work again. this.context = context - Object.assign(this.browserContext, this.context) + // TODO: try to get this to work again for screenshots, but it messed with test ends when enabled + // Object.assign(this.browserContext, this.context) this.electronApp = electronApp this.dir = dir