()
| 117 | } |
| 118 | |
| 119 | async function doTests() { |
| 120 | await testNoCrashWithExceptionInCallback(); |
| 121 | testSampleDebugSession(); |
| 122 | let breakpointHit = false; |
| 123 | scopeCallback = () => (breakpointHit = true); |
| 124 | debuggedFunction(); |
| 125 | assert.strictEqual(breakpointHit, false); |
| 126 | testSampleDebugSession(); |
| 127 | await testNoCrashConsoleLogBeforeThrow(); |
| 128 | } |
| 129 | |
| 130 | doTests().then(common.mustCall()); |
no test coverage detected