From 99633855f4f0583e398a5da2273633bbed7e559a Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 4 Sep 2026 09:22:36 +0000 Subject: [PATCH 1/2] FE-1589: Skip the flaky browser-plugin one-off inference test --- tests/hash-playwright/tests/extension/browser-plugin.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/hash-playwright/tests/extension/browser-plugin.spec.ts b/tests/hash-playwright/tests/extension/browser-plugin.spec.ts index 07558f2ed99..b82df3fe92e 100644 --- a/tests/hash-playwright/tests/extension/browser-plugin.spec.ts +++ b/tests/hash-playwright/tests/extension/browser-plugin.spec.ts @@ -253,7 +253,7 @@ test.skip("user can type a quick note which persists across logouts", async ({ // @todo verify the correct WebSocket message is sent to the API when // `Suggest entities` is clicked — see // https://github.com/microsoft/playwright/issues/15684#issuecomment-1892644655 -test("user can configure a one-off inference, and the settings are persisted", async ({ +test.skip("user can configure a one-off inference, and the settings are persisted", async ({ page, extensionId, }) => { From bbefb781bc6804654e48b35e10c59bcc15a62c15 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 4 Sep 2026 09:47:49 +0000 Subject: [PATCH 2/2] FE-1589: Skip the flaky browser-plugin automatic inference test The sibling automatic-inference test shares openPopupTab and waitForPopupStateLoaded with the already-quarantined one-off test and failed the same way: page.evaluate at browser-plugin.spec.ts:32 threw "Target page, context or browser has been closed" after the 30s test timeout. --- tests/hash-playwright/tests/extension/browser-plugin.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/hash-playwright/tests/extension/browser-plugin.spec.ts b/tests/hash-playwright/tests/extension/browser-plugin.spec.ts index b82df3fe92e..de7ea768f1b 100644 --- a/tests/hash-playwright/tests/extension/browser-plugin.spec.ts +++ b/tests/hash-playwright/tests/extension/browser-plugin.spec.ts @@ -288,7 +288,7 @@ test.skip("user can configure a one-off inference, and the settings are persiste * page triggers automatic inference — see * https://github.com/microsoft/playwright/issues/15684#issuecomment-1892644655 */ -test("user can enable automatic inference, and the settings are persisted", async ({ +test.skip("user can enable automatic inference, and the settings are persisted", async ({ page, extensionId, }) => {