Skip to content

Commit c0673d2

Browse files
Changing width to 100
1 parent 3de1cfe commit c0673d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/helpers/sync/syncSpecsLogs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ let getTableConfig = () => {
3535
border: getBorderConfig(),
3636
columns: {
3737
1: {alignment: 'center', width: 1},
38-
2: {alignment: 'left', width: 80}
38+
2: {alignment: 'left', width: 100}
3939
},
4040
columnDefault: {
4141
width: 25,

test/unit/bin/helpers/sync/syncSpecsLogs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ describe("syncSpecsLogs", () => {
9696
expect(options.columns[1].alignment).to.equal('center');
9797
expect(options.columns[2].alignment).to.equal('left');
9898
expect(options.columns[1].width).to.equal(1);
99-
expect(options.columns[2].width).to.equal(80);
99+
expect(options.columns[2].width).to.equal(100);
100100
expect(options.columnCount).to.equal(3);
101101
expect(getBorderConfigStub.calledOnce).to.be.true;
102102
});

0 commit comments

Comments
 (0)