File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,10 @@ export const logger = {
3030 _ . each ( formattedLog , ( value , key ) => {
3131 // don't log empty strings
3232 // _.trim([]) returns '' but we want to log empty arrays, so account for that
33- < << << << HEAD
3433 if ( _ . isString ( value ) && _ . trim ( value ) === '' ) return
35- === = ===
34+
3635 // Skip trim if we know value is an object
3736 if ( typeof value !== 'object' && _ . trim ( value ) === '' && ! _ . isArray ( value ) ) return
38- >>> > >>> develop
3937
4038 this . log ( `%c${ key } ` , 'font-weight: bold' , value )
4139 } )
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ export interface LaunchArgs {
3636 testingType : Cypress . TestingType
3737 invokedFromCli : boolean
3838 os : PlatformName
39+ exit ?: boolean
3940
4041 onFocusTests ?: ( ) => any
4142}
You can’t perform that action at this time.
0 commit comments