@@ -603,7 +603,7 @@ Execute \\help or \\? for help;`;
603
603
await requisitions . execute ( "sqlTransactionChanged" , undefined ) ;
604
604
605
605
void requisitions . execute ( "showInfo" , "Commit successful." ) ;
606
- } catch ( reason ) {
606
+ } catch ( reason ) /* istanbul ignore next */ {
607
607
const message = reason instanceof Error ? reason . message : String ( reason ) ;
608
608
await requisitions . execute ( "showError" , "Error while committing changes: " + message ) ;
609
609
}
@@ -716,7 +716,7 @@ Execute \\help or \\? for help;`;
716
716
} else if ( this . scriptRef . current ) {
717
717
this . scriptRef . current . insertScriptText ( data . language , content ) ;
718
718
}
719
- } catch ( reason ) {
719
+ } catch ( reason ) /* istanbul ignore next */ {
720
720
const message = reason instanceof ResponseError ? reason . message : String ( reason ) ;
721
721
await requisitions . execute ( "showError" , "Cannot load scripts content: " + message ) ;
722
722
@@ -822,7 +822,7 @@ Execute \\help or \\? for help;`;
822
822
823
823
return Promise . resolve ( true ) ;
824
824
}
825
- } else {
825
+ } else /* istanbul ignore next */ {
826
826
if ( payload . contextId ) {
827
827
this . addContextResultMessage ( payload . contextId , `\nAuthentication cancelled.` ) ;
828
828
}
@@ -3053,7 +3053,7 @@ Execute \\help or \\? for help;`;
3053
3053
3054
3054
void requisitions . execute ( "showInfo" ,
3055
3055
`The HeatWave options have been saved successfully to ${ fileResult . path [ 0 ] } ` ) ;
3056
- } catch ( reason ) {
3056
+ } catch ( reason ) /* istanbul ignore next */ {
3057
3057
let content : string ;
3058
3058
3059
3059
if ( reason instanceof ResponseError ) {
@@ -3087,7 +3087,7 @@ Execute \\help or \\? for help;`;
3087
3087
void requisitions . execute ( "showInfo" ,
3088
3088
`The HeatWave options have been loaded successfully from ${ fileResult . path [ 0 ] } ` ) ;
3089
3089
}
3090
- } catch ( reason ) {
3090
+ } catch ( reason ) /* istanbul ignore next */ {
3091
3091
let content : string ;
3092
3092
3093
3093
if ( reason instanceof ResponseError ) {
0 commit comments