()
| 30 | } |
| 31 | |
| 32 | async function runTests() { |
| 33 | const child = new NodeInstance(['--inspect-brk=0']); |
| 34 | const session = await child.connectInspectorSession(); |
| 35 | |
| 36 | await testBreakpointOnStart(session); |
| 37 | await session.runToCompletion(); |
| 38 | |
| 39 | assert.strictEqual((await child.expectShutdown()).exitCode, 55); |
| 40 | } |
| 41 | |
| 42 | runTests().then(common.mustCall()); |
no test coverage detected
searching dependent graphs…