diff --git a/lib/internal/inspector/inspect_repl.js b/lib/internal/inspector/inspect_repl.js index 5e10dad2e147fd..68217267276fd4 100644 --- a/lib/internal/inspector/inspect_repl.js +++ b/lib/internal/inspector/inspect_repl.js @@ -1050,7 +1050,8 @@ function createRepl(inspector) { .then(() => Debugger.setPauseOnExceptions({ state: 'none' })) .then(() => Debugger.setAsyncCallStackDepth({ maxDepth: 0 })) .then(() => Debugger.setBlackboxPatterns({ patterns: [] })) - .then(() => Debugger.setPauseOnExceptions({ state: pauseOnExceptionState })) + .then(() => + Debugger.setPauseOnExceptions({ state: pauseOnExceptionState })) .then(() => restoreBreakpoints()) .then(() => Runtime.runIfWaitingForDebugger()); }