Skip to content

Commit 848bd35

Browse files
committed
fix lint issues
1 parent c6e8d9d commit 848bd35

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

test/sequential/test-debugger-low-level.js

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ const assert = require('assert');
1212
const cli = startCLI([fixtures.path('debugger/three-lines.js')]);
1313
const scriptPattern = /^\* (\d+): \S+debugger(?:\/|\\)three-lines\.js/m;
1414

15-
async function testDebuggerLowLevel()
16-
{
17-
try{
15+
async function testDebuggerLowLevel() {
16+
try {
1817
await cli.waitForInitialBreak();
1918
await cli.waitForPrompt();
2019
await cli.command('scripts');
@@ -23,12 +22,12 @@ const assert = require('assert');
2322
`Debugger.getScriptSource({ scriptId: '${scriptId}' })`
2423
);
2524
assert.match(
26-
cli.output,
27-
/scriptSource:[ \n]*'(?:\(function \(|let x = 1)/);
25+
cli.output,
26+
/scriptSource:[ \n]*'(?:\(function \(|let x = 1)/);
2827
assert.match(
29-
cli.output,
30-
/let x = 1;/);
31-
} finally{
28+
cli.output,
29+
/let x = 1;/);
30+
} finally {
3231
await cli.quit();
3332
}
3433
}

0 commit comments

Comments
 (0)