0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-02 12:50:43 -05:00

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 Bartek Iwańczuk
parent b50cda79cf
commit 568ba673a8
No known key found for this signature in database
GPG key ID: 0C6BCDDC3B3AD750

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;