From 7ff82760deb433866b95b5b0d325a293fc818d25 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Thu, 18 May 2023 00:54:34 +0000 Subject: [PATCH] chore: tree gardening (#23111) https://github.com/microsoft/playwright/issues/23107 https://github.com/microsoft/playwright/issues/23108 https://github.com/microsoft/playwright/issues/23110 --- tests/library/browsertype-launch-selenium.spec.ts | 1 + tests/library/tracing.spec.ts | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/library/browsertype-launch-selenium.spec.ts b/tests/library/browsertype-launch-selenium.spec.ts index d46ca0c5f8..0534380a66 100644 --- a/tests/library/browsertype-launch-selenium.spec.ts +++ b/tests/library/browsertype-launch-selenium.spec.ts @@ -180,6 +180,7 @@ test('selenium grid 3.141.59 standalone non-chromium', async ({ browserName, bro test('selenium grid 3.141.59 standalone chromium through run-driver', async ({ browserName, childProcess, waitForPort }, testInfo) => { test.skip(browserName !== 'chromium'); + test.fixme(true, 'https://github.com/microsoft/playwright/issues/23110'); const port = testInfo.workerIndex + 15123; const grid = childProcess({ diff --git a/tests/library/tracing.spec.ts b/tests/library/tracing.spec.ts index 7c68098553..0068de5f43 100644 --- a/tests/library/tracing.spec.ts +++ b/tests/library/tracing.spec.ts @@ -577,7 +577,8 @@ test('should record global request trace', async ({ request, context, server }, })); }); -test('should store global request traces separately', async ({ request, server, playwright }, testInfo) => { +test('should store global request traces separately', async ({ request, server, playwright, browserName, mode }, testInfo) => { + test.fixme(browserName === 'chromium' && mode === 'driver', 'https://github.com/microsoft/playwright/issues/23108'); const request2 = await playwright.request.newContext(); await Promise.all([ (request as any)._tracing.start({ snapshots: true }), @@ -636,6 +637,7 @@ test('should store postData for global request', async ({ request, server }, tes }); test('should not flush console events', async ({ context, page }, testInfo) => { + test.fixme(true, 'https://github.com/microsoft/playwright/issues/23107'); await context.tracing.start(); const promise = new Promise(f => { let counter = 0;