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 0c87b71 commit 6092cc8Copy full SHA for 6092cc8
bin/helpers/sync/failedSpecsDetails.js
@@ -53,7 +53,7 @@ let failedSpecsDetails = (data) => {
53
let tableConfig = {
54
border: tablePrinter.getBorderCharacters('ramac'),
55
columns: {
56
- 0: { alignment: 'left' },
+ 0: { alignment: 'left' , width: 60 },
57
1: { alignment: 'left' },
58
2: { alignment: 'left' },
59
3: { alignment: 'left' },
@@ -65,7 +65,7 @@ let failedSpecsDetails = (data) => {
65
* @return {boolean}
66
*/
67
drawHorizontalLine: (index, size) => {
68
- return (index === 0 || index === 1 || index === size);
+ return (index === 0 || index === 1 || index === specData.length);
69
}
70
71
0 commit comments