From 0f73e967e21104a74430e5cc4a0ac036c8634ac0 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 23 Sep 2022 10:51:01 -0700 Subject: [PATCH] Update test/sequential/test-debugger-sb-before-load.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Tobias Nießen --- test/sequential/test-debugger-sb-before-load.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sequential/test-debugger-sb-before-load.js b/test/sequential/test-debugger-sb-before-load.js index 3ab84db931834f..e2267156b7420b 100644 --- a/test/sequential/test-debugger-sb-before-load.js +++ b/test/sequential/test-debugger-sb-before-load.js @@ -26,7 +26,7 @@ const cli = startCLI([script]); assert.match(cli.output, /not loaded yet/, 'warns that the script was not loaded yet'); await cli.stepCommand('cont'); - assert.ok(cli.output.includes, `break in ${otherScript}:2`, + assert.ok(cli.output.includes(`break in ${otherScript}:2`), 'found breakpoint in file that was not loaded yet'); })() .then(common.mustCall())