@@ -422,7 +422,9 @@ const logTestResults = (
422422 options : KarmaMultiEnvExecutorSchema ,
423423) : void => {
424424 if ( options . watch ) {
425- logger . verbose ( `\n${ STATUS_ICONS . WATCH } Watch mode active for: ${ plan . executionOrder . join ( ', ' ) } ` ) ;
425+ logger . verbose (
426+ `\n${ STATUS_ICONS . WATCH } Watch mode active for: ${ plan . executionOrder . join ( ', ' ) } ` ,
427+ ) ;
426428 if ( options . verbose ) {
427429 logger . verbose ( `Karma config: ${ options . karmaConfig } ` ) ;
428430 logger . verbose ( 'Watching file changes...' ) ;
@@ -434,7 +436,9 @@ const logTestResults = (
434436 logger . verbose ( '\n' + '=' . repeat ( 50 ) ) ;
435437 logger . verbose ( `${ STATUS_ICONS . DOCUMENTATION } TEST RESULTS SUMMARY` ) ;
436438 logger . verbose ( '=' . repeat ( 50 ) ) ;
437- logger . verbose ( `\n${ STATUS_ICONS . SUCCESS } Environments tested: ${ plan . executionOrder . join ( ', ' ) } ` ) ;
439+ logger . verbose (
440+ `\n${ STATUS_ICONS . SUCCESS } Environments tested: ${ plan . executionOrder . join ( ', ' ) } ` ,
441+ ) ;
438442 logger . verbose ( `${ STATUS_ICONS . CLOCK } Total duration: ${ summary . totalDuration } ms` ) ;
439443
440444 summary . results . forEach ( ( result ) => {
@@ -470,7 +474,9 @@ const setupWatchModeEvents = (environment: KarmaEnvironment, server: any): void
470474 const statusIcon = results . success ? STATUS_ICONS . SUCCESS : STATUS_ICONS . FAILURE ;
471475 const statusText = results . success ? 'All tests passed' : 'Some tests failed' ;
472476
473- logger . verbose ( `\n[${ environment . toUpperCase ( ) } ] Test run completed. Success: ${ results . success } ` ) ;
477+ logger . verbose (
478+ `\n[${ environment . toUpperCase ( ) } ] Test run completed. Success: ${ results . success } ` ,
479+ ) ;
474480 logger . verbose ( `${ statusIcon } ${ statusText } in watch mode - continuing to watch...` ) ;
475481 logger . verbose ( 'Press CTRL+C to stop watching...' ) ;
476482 } ) ;
0 commit comments