From feac31dbdc4987dcc9d46b2026d97c5a747747c4 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Fri, 25 Aug 2023 23:57:56 +0200 Subject: [PATCH] test: mark 'should fire close event' as fixme in MSEdge (#26712) https://github.com/microsoft/playwright/issues/26711 --------- Signed-off-by: Max Schmitt --- tests/library/browsertype-launch-server.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/library/browsertype-launch-server.spec.ts b/tests/library/browsertype-launch-server.spec.ts index dcb69d614b..d9c8f407d0 100644 --- a/tests/library/browsertype-launch-server.spec.ts +++ b/tests/library/browsertype-launch-server.spec.ts @@ -80,7 +80,9 @@ it.describe('launch server', () => { await browserServer.close(); }); - it('should fire close event', async ({ browserType }) => { + it('should fire close event', async ({ browserType, channel }) => { + it.fixme(channel?.startsWith('msedge'), 'https://github.com/microsoft/playwright/issues/26711'); + const browserServer = await browserType.launchServer(); const [result] = await Promise.all([ // @ts-expect-error The signal parameter is not documented.