(session, context)
| 37 | } |
| 38 | |
| 39 | async function checkScriptContext(session, context) { |
| 40 | const scriptParsed = |
| 41 | await session.waitForNotification('Debugger.scriptParsed'); |
| 42 | assert.strictEqual(scriptParsed.params.executionContextId, context.id); |
| 43 | } |
| 44 | |
| 45 | async function runTests() { |
| 46 | const instance = new NodeInstance(['--inspect-brk=0', '--expose-internals'], |
no test coverage detected
searching dependent graphs…