Skip to content

Commit a949698

Browse files
committed
fixup!
1 parent 3afd177 commit a949698

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

src/inspector_js_api.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,8 @@ class JSBindingsConnection : public BaseObject {
212212

213213
if (session->session_) {
214214
Isolate* isolate = info.GetIsolate();
215-
session->session_->Dispatch(ToInspectorString(isolate, info[0])->string());
215+
session->session_->Dispatch(
216+
ToInspectorString(isolate, info[0])->string());
216217
if (!isolate->IsExecutionTerminating()) {
217218
isolate->PerformMicrotaskCheckpoint();
218219
}

test/parallel/test-repl-sigint.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ if (common.isWindows) {
55
common.skip('platform not supported');
66
}
77

8+
common.skipIfInspectorDisabled();
9+
810
const { isMainThread } = require('worker_threads');
911

1012
if (!isMainThread) {
@@ -50,4 +52,4 @@ child.on('close', common.mustCall((code) => {
5052
stdout.includes('42042\n'),
5153
`Expected stdout to contain "42042", got ${stdout}`
5254
);
53-
}));
55+
}));

0 commit comments

Comments
 (0)