test: mark 'should fire close event' as fixme in MSEdge (#26712)

https://github.com/microsoft/playwright/issues/26711

---------

Signed-off-by: Max Schmitt <max@schmitt.mx>
This commit is contained in:
Max Schmitt 2023-08-25 23:57:56 +02:00 committed by GitHub
parent 4bf5b091d5
commit feac31dbdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.