File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed
Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff 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 + d e b u g g e r (?: \/ | \\ ) t h r e e - l i n e s \. j s / 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- / s c r i p t S o u r c e : [ \n ] * ' (?: \( f u n c t i o n \( | l e t x = 1 ) / ) ;
25+ cli . output ,
26+ / s c r i p t S o u r c e : [ \n ] * ' (?: \( f u n c t i o n \( | l e t x = 1 ) / ) ;
2827 assert . match (
29- cli . output ,
30- / l e t x = 1 ; / ) ;
31- } finally {
28+ cli . output ,
29+ / l e t x = 1 ; / ) ;
30+ } finally {
3231 await cli . quit ( ) ;
3332 }
3433 }
You can’t perform that action at this time.
0 commit comments