From 37d842c21ebfd71b065004582469c243186e32ca Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Thu, 13 Feb 2025 14:25:56 +0100 Subject: [PATCH] remove experimental --- tests/playwright-test/ui-mode-llm.spec.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/playwright-test/ui-mode-llm.spec.ts b/tests/playwright-test/ui-mode-llm.spec.ts index 9d850d56ca..010563dfff 100644 --- a/tests/playwright-test/ui-mode-llm.spec.ts +++ b/tests/playwright-test/ui-mode-llm.spec.ts @@ -18,9 +18,6 @@ import { test, expect, retries } from './ui-mode-fixtures'; test.describe.configure({ mode: 'parallel', retries }); -test.beforeAll(() => process.env.PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS = '1'); -test.afterAll(() => delete process.env.PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS); - test('openai', async ({ runUITest, server }) => { server.setRoute('/v1/chat/completions', async (req, res) => { res.setHeader('Access-Control-Allow-Origin', '*');