File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,10 @@ export class ShellImpl implements IShellImpl {
9595 this . _options . color ? ansi . styleReset : undefined
9696 ) ;
9797
98- this . _tabCompleter = new TabCompleter ( this . _runContext , this . _options . enableBufferedStdinCallback ) ;
98+ this . _tabCompleter = new TabCompleter (
99+ this . _runContext ,
100+ this . _options . enableBufferedStdinCallback
101+ ) ;
99102 }
100103
101104 get aliases ( ) : Aliases {
Original file line number Diff line number Diff line change @@ -553,8 +553,7 @@ test.describe('Shell', () => {
553553 expect ( lines . at ( - 1 ) ) . toMatch ( / l s a $ / ) ;
554554 } ) ;
555555
556- //const stdinOptions = ['sab', 'sw'];
557- const stdinOptions = [ 'sw' ] ;
556+ const stdinOptions = [ 'sab' , 'sw' ] ;
558557 stdinOptions . forEach ( stdinOption => {
559558 test ( `check prompt displayed and accepted using y via ${ stdinOption } ` , async ( { page } ) => {
560559 const output = await page . evaluate (
You can’t perform that action at this time.
0 commit comments