Skip to content

Commit 8946bc7

Browse files
committed
test: corrected linting error
1 parent 359a508 commit 8946bc7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/sequential/test-debugger-watchers.mjs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ import startCLI from '../common/debugger.js';
66

77
import assert from 'assert';
88

9+
const script = path('debugger', 'break.js');
10+
const cli = startCLI([script]);
11+
912
function onFatal(error) {
1013
cli.quit();
1114
throw error;
1215
}
1316

1417
// Stepping through breakpoints.
1518
try {
16-
const script = path('debugger', 'break.js');
17-
const cli = startCLI([script]);
18-
1919
await cli.waitForInitialBreak();
2020
await cli.waitForPrompt();
2121
await cli.command('watch("x")');
@@ -44,6 +44,6 @@ try {
4444
);
4545

4646
await cli.quit();
47-
} catch(error) {
48-
onFatal(error)
49-
}
47+
} catch (error) {
48+
onFatal(error);
49+
}

0 commit comments

Comments
 (0)