()
| 11 | const createRepl = require('internal/debugger/inspect_repl'); |
| 12 | |
| 13 | function createGate() { |
| 14 | let resolve; |
| 15 | const promise = new Promise((res) => { |
| 16 | resolve = res; |
| 17 | }); |
| 18 | return { promise, resolve }; |
| 19 | } |
| 20 | |
| 21 | function createAgent(domain, calls, gates) { |
| 22 | const agent = new EventEmitter(); |
no outgoing calls
no test coverage detected