We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bec814 commit 75ba9d9Copy full SHA for 75ba9d9
bin/helpers/sync/syncSpecsLogs.js
@@ -13,7 +13,7 @@ let specSummary = {
13
"specs": [],
14
"duration": null
15
}
16
-let terminalWidth = (process.stdout.columns) * 0.9;
+let terminalWidth = (process.stdout.columns);
17
18
let getOptions = (auth, build_id) => {
19
return {
@@ -34,8 +34,8 @@ let getTableConfig = () => {
34
35
border: getBorderConfig(),
36
columns: {
37
- 1: {alignment: 'center', width: 1},
38
- 2: {alignment: 'left', width: Math.floor(terminalWidth * 0.8)}
+ 1: {alignment: 'center', width: Math.ceil(terminalWidth * 0.01)},
+ 2: {alignment: 'left', width: Math.floor(terminalWidth * 0.70)}
39
},
40
columnDefault: {
41
width: Math.floor(terminalWidth * 0.2),
0 commit comments