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

Commit c773288

Browse files
authored
Merge pull request #44 from joshgav/generic-hint
look for generic hint text
2 parents ad0dd3c + 0affb81 commit c773288

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/_inspect.js

Lines changed: 1 addition & 1 deletion
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)