fix(ci): resolve chrome websocket raw-data typing

This commit is contained in:
Peter Steinberger
2026-03-02 23:18:00 +00:00
parent 7066d5e192
commit 7365aefa19

View File

@@ -134,7 +134,7 @@ async function canRunCdpHealthCommand(
handshakeTimeoutMs: timeoutMs,
});
let settled = false;
const onMessage = (raw: WebSocket.RawData) => {
const onMessage = (raw: Parameters<typeof rawDataToString>[0]) => {
if (settled) {
return;
}