(err)
| 33 | const { QuicError } = await import('node:quic'); |
| 34 | |
| 35 | function wireCodeOf(err) { |
| 36 | strictEqual(err.code, 'ERR_QUIC_APPLICATION_ERROR'); |
| 37 | return err.errorCode; |
| 38 | } |
| 39 | |
| 40 | // Server: capture the next two streams. Each stream receives an |
| 41 | // onreset handler synchronously inside onstream so the C++ -> JS |
no outgoing calls
no test coverage detected
searching dependent graphs…