Skip to content

Commit 6092cc8

Browse files
Fixing width of failed specs table
1 parent 0c87b71 commit 6092cc8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/helpers/sync/failedSpecsDetails.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ let failedSpecsDetails = (data) => {
5353
let tableConfig = {
5454
border: tablePrinter.getBorderCharacters('ramac'),
5555
columns: {
56-
0: { alignment: 'left' },
56+
0: { alignment: 'left' , width: 60 },
5757
1: { alignment: 'left' },
5858
2: { alignment: 'left' },
5959
3: { alignment: 'left' },
@@ -65,7 +65,7 @@ let failedSpecsDetails = (data) => {
6565
* @return {boolean}
6666
*/
6767
drawHorizontalLine: (index, size) => {
68-
return (index === 0 || index === 1 || index === size);
68+
return (index === 0 || index === 1 || index === specData.length);
6969
}
7070
}
7171

0 commit comments

Comments
 (0)