Skip to content
This repository was archived by the owner on Feb 1, 2022. It is now read-only.

Commit 42e0cd1

Browse files
joshgavJan Krems
authored and
Jan Krems
committed
fix: look for generic hint text
1 parent ad0dd3c commit 42e0cd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/_inspect.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ function runScript(script, scriptArgs, inspectHost, inspectPort, childPrint) {
110110
let output = '';
111111
function waitForListenHint(text) {
112112
output += text;
113-
if (/chrome-devtools:\/\//.test(output)) {
113+
if (/Debugger listening on/.test(output)) {
114114
child.stderr.removeListener('data', waitForListenHint);
115115
resolve(child);
116116
}

0 commit comments

Comments
 (0)