(session)
| 59 | } |
| 60 | |
| 61 | async function stepOverConsoleStatement(session) { |
| 62 | console.log('[test]', 'Step over console statement and test output'); |
| 63 | session.send({ 'method': 'Debugger.stepOver' }); |
| 64 | await session.waitForConsoleOutput('log', [0, 3]); |
| 65 | await session.waitForNotification('Debugger.paused'); |
| 66 | } |
| 67 | |
| 68 | async function runTests() { |
| 69 | // NOTE(mmarchini): Use --inspect-brk to improve avoid indeterministic |
no test coverage detected
searching dependent graphs…