fix(testing): add op_spawn_wait mapping in resource sanitizer (#22129)

This commit is contained in:
Luca Casonato 2024-01-26 16:06:27 +01:00 committed by GitHub
parent 9a5b4b0395
commit 98c537726e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -206,6 +206,7 @@ const OP_DETAILS = {
"op_ws_send_binary_ab": ["send a message on a WebSocket", "closing a `WebSocket` or `WebSocketStream`"],
"op_ws_send_ping": ["send a message on a WebSocket", "closing a `WebSocket` or `WebSocketStream`"],
"op_ws_send_pong": ["send a message on a WebSocket", "closing a `WebSocket` or `WebSocketStream`"],
"op_spawn_wait": ["wait for a subprocess to exit", "awaiting the result of a `Deno.Process#status` call"],
};
let opIdHostRecvMessage = -1;