File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ let specSummary = {
13
13
"specs" : [ ] ,
14
14
"duration" : null
15
15
}
16
- let terminalWidth = ( process . stdout . columns ) * 0.9 ;
16
+ let terminalWidth = ( process . stdout . columns ) * 0.9 ;
17
17
18
18
let getOptions = ( auth , build_id ) => {
19
19
return {
@@ -38,7 +38,7 @@ let getTableConfig = () => {
38
38
2 : { alignment : 'left' , width : Math . floor ( terminalWidth * 0.8 ) }
39
39
} ,
40
40
columnDefault : {
41
- width : Math . floor ( terminalWidth * 0.2 ) ,
41
+ width : Math . floor ( terminalWidth * 0.2 ) ,
42
42
} ,
43
43
columnCount : 3 ,
44
44
} ;
@@ -81,7 +81,7 @@ let printSpecsStatus = (bsConfig, buildDetails) => {
81
81
whileProcess ( callback )
82
82
} ,
83
83
function ( err , result ) { // when loop ends
84
- logger . info ( `\n ${ " -". repeat ( terminalWidth ) } ` )
84
+ logger . info ( "\n" + " -". repeat ( terminalWidth ) )
85
85
specSummary . duration = endTime - startTime
86
86
resolve ( specSummary )
87
87
}
@@ -139,7 +139,7 @@ let showSpecsStatus = (data) => {
139
139
140
140
let printInitialLog = ( ) => {
141
141
logger . info ( `\n${ Constants . syncCLI . LOGS . INIT_LOG } ` )
142
- logger . info ( `\n ${ " -". repeat ( terminalWidth ) } ` )
142
+ logger . info ( "\n" + " -". repeat ( terminalWidth ) )
143
143
n = Constants . syncCLI . INITIAL_DELAY_MULTIPLIER
144
144
}
145
145
You can’t perform that action at this time.
0 commit comments