Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
src: fix syntax error not showing in stderr with node --inspect-brk
  • Loading branch information
cola119 committed Mar 26, 2022
commit 5f3ee114295937f3eff3ac01c453d53f7e0d7344
1 change: 0 additions & 1 deletion src/inspector_agent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,6 @@ void Agent::ReportUncaughtException(Local<Value> error,
if (!IsListening())
return;
client_->ReportUncaughtException(error, message);
WaitForDisconnect();
}

void Agent::PauseOnNextJavascriptStatement(const std::string& reason) {
Expand Down
30 changes: 30 additions & 0 deletions test/parallel/test-inspector-inspect-brk-error-report.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
'use strict';
const common = require('../common');
const assert = require('assert');

common.skipIfInspectorDisabled();

const { NodeInstance } = require('../common/inspector-helper.js');

async function runTest() {
const child = new NodeInstance(['--inspect-brk'], 'console.log(1');
const session = await child.connectInspectorSession();
await session.send({ method: 'Runtime.enable' });
await session.send({ method: 'Debugger.enable' });
await session.send({ method: 'Runtime.runIfWaitingForDebugger' });
let match = false;
while (true) {
const stderr = await child.nextStderrString();
if (/SyntaxError: missing \) after argument list/.test(stderr)) {
match = true;
}
if (/Waiting for the debugger to disconnect/.test(stderr)) {
break;
}
}
assert.ok(match);
await session.disconnect();
return child.expectShutdown();
}

runTest().then(common.mustCall());