Skip to content

Commit

Permalink
Update test/sequential/test-debugger-sb-before-load.js
Browse files Browse the repository at this point in the history
Co-authored-by: Tobias Nießen <tniessen@tnie.de>
  • Loading branch information
Trott and tniessen committed Sep 23, 2022
1 parent a375911 commit 0f73e96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/sequential/test-debugger-sb-before-load.js
Expand Up @@ -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())
Expand Down

0 comments on commit 0f73e96

Please sign in to comment.