From d943519fb4d3463d3f434bff43f878002e633d34 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 12 Jul 2017 16:59:53 -0700 Subject: [PATCH] Update text expectation for new --inspect-brk message --- spec/node-spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/node-spec.js b/spec/node-spec.js index 886ad3d35bf8..7e83ec9e5651 100644 --- a/spec/node-spec.js +++ b/spec/node-spec.js @@ -144,7 +144,7 @@ describe('node feature', function () { child.stderr.on('data', function (data) { output += data - if (output.trim().startsWith('Debugger listening on port')) { + if (output.trim().startsWith('Debugger listening on ws://')) { done() } })