()
| 23 | } |
| 24 | |
| 25 | function pickIPv4Address() { |
| 26 | for (const i of [].concat(...Object.values(os.networkInterfaces()))) { |
| 27 | if (i.family === 'IPv4' && i.address !== '127.0.0.1') |
| 28 | return i.address; |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | async function test() { |
| 33 | const instance = new NodeInstance('--inspect-brk=0.0.0.0:0'); |
no test coverage detected
searching dependent graphs…