()
| 101 | } |
| 102 | |
| 103 | async function runTest() { |
| 104 | const child = new NodeInstance(['--inspect-brk=0'], '', |
| 105 | fixtures.path('es-modules/loop.mjs')); |
| 106 | |
| 107 | const session = await child.connectInspectorSession(); |
| 108 | await testBreakpointOnStart(session); |
| 109 | await testBreakpoint(session); |
| 110 | await session.runToCompletion(); |
| 111 | assert.strictEqual((await child.expectShutdown()).exitCode, 55); |
| 112 | } |
| 113 | |
| 114 | runTest().then(common.mustCall()); |
no test coverage detected
searching dependent graphs…