Skip to content

Commit f630881

Browse files
hopeolaidejuanarbol
authored andcommitted
test: use async/await in test-debugger-sb-before-load
PR-URL: #44697 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
1 parent fada3a2 commit f630881

File tree

1 file changed

+21
-32
lines changed

1 file changed

+21
-32
lines changed

‎test/sequential/test-debugger-sb-before-load.js‎

Lines changed: 21 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -10,35 +10,24 @@ const assert = require('assert');
1010
constpath=require('path');
1111

1212
// Using sb before loading file.
13-
{
14-
constscriptFullPath=fixtures.path('debugger','cjs','index.js');
15-
constscript=path.relative(process.cwd(),scriptFullPath);
16-
17-
constotherScriptFullPath=fixtures.path('debugger','cjs','other.js');
18-
constotherScript=path.relative(process.cwd(),otherScriptFullPath);
19-
20-
constcli=startCLI([script]);
21-
22-
functiononFatal(error){
23-
cli.quit();
24-
throwerror;
25-
}
26-
27-
cli.waitForInitialBreak()
28-
.then(()=>cli.waitForPrompt())
29-
.then(()=>cli.command('sb("other.js", 2)'))
30-
.then(()=>{
31-
assert.match(
32-
cli.output,
33-
/notloadedyet/,
34-
'warns that the script was not loaded yet');
35-
})
36-
.then(()=>cli.stepCommand('cont'))
37-
.then(()=>{
38-
assert.ok(
39-
cli.output.includes(`break in ${otherScript}:2`),
40-
'found breakpoint in file that was not loaded yet');
41-
})
42-
.then(()=>cli.quit())
43-
.then(null,onFatal);
44-
}
13+
14+
constscriptFullPath=fixtures.path('debugger','cjs','index.js');
15+
constscript=path.relative(process.cwd(),scriptFullPath);
16+
17+
constotherScriptFullPath=fixtures.path('debugger','cjs','other.js');
18+
constotherScript=path.relative(process.cwd(),otherScriptFullPath);
19+
20+
constcli=startCLI([script]);
21+
22+
(async()=>{
23+
awaitcli.waitForInitialBreak();
24+
awaitcli.waitForPrompt();
25+
awaitcli.command('sb("other.js", 2)');
26+
assert.match(cli.output,/notloadedyet/,
27+
'warns that the script was not loaded yet');
28+
awaitcli.stepCommand('cont');
29+
assert.ok(cli.output.includes(`break in ${otherScript}:2`),
30+
'found breakpoint in file that was not loaded yet');
31+
})()
32+
.then(common.mustCall())
33+
.finally(()=>cli.quit());

0 commit comments

Comments
(0)