File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { executeRunner } from './lib/runner' ;
22
3- await executeRunner ( ) . catch ( console . error ) ;
3+ await executeRunner ( ) ;
Original file line number Diff line number Diff line change @@ -20,14 +20,13 @@ export async function executeRunner(): Promise<void> {
2020 // Run coverage tool if provided
2121 if ( coverageToolCommand != null ) {
2222 const { command, args } = coverageToolCommand ;
23-
2423 try {
2524 await executeProcess ( { command, args } ) ;
2625 } catch ( error ) {
2726 if ( error instanceof ProcessError ) {
28- console . info ( chalk . bold ( 'stdout from failed process:' ) ) ;
29- console . info ( error . stdout ) ;
30- console . error ( chalk . bold ( 'stderr from failed process:' ) ) ;
27+ console . error ( chalk . bold ( 'stdout from failed coverage tool process:' ) ) ;
28+ console . error ( error . stdout ) ;
29+ console . error ( chalk . bold ( 'stderr from failed coverage tool process:' ) ) ;
3130 console . error ( error . stderr ) ;
3231 }
3332
Original file line number Diff line number Diff line change 11import { executeRunner } from './lib/runner' ;
22
3- await executeRunner ( ) . catch ( console . error ) ;
3+ await executeRunner ( ) ;
You can’t perform that action at this time.
0 commit comments