From b7fd21c07891f03d9a1674ef69d4741d5a336742 Mon Sep 17 00:00:00 2001 From: Devin Rousso Date: Wed, 2 Sep 2026 09:59:32 -0600 Subject: [PATCH] test(webkit): reenable WebSocket handshake HAR coverage the upstream WebKit fix restores the reported WebSocket handshake headers on macOS 26 remove the platform skip so the existing HAR assertions run again --- tests/library/har-websocket.spec.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/library/har-websocket.spec.ts b/tests/library/har-websocket.spec.ts index 622d3b4b2eb7d..c1355ffbba1e9 100644 --- a/tests/library/har-websocket.spec.ts +++ b/tests/library/har-websocket.spec.ts @@ -98,7 +98,6 @@ it('should only have one websocket entry', async ({ contextFactory, server }, te }); it('should include websocket handshake headers and status', async ({ contextFactory, server, browserName, isMac, macVersion }, testInfo) => { - it.fixme(browserName === 'webkit' && isMac && macVersion >= 26, 'NWLoader does not reflect the wire handshake headers (Sec-WebSocket-Key, Connection, Upgrade) in NSURLSessionWebSocketTask.currentRequest'); server.onceWebSocketConnection(ws => { ws.on('message', () => ws.close()); });