Skip to content

Commit 0c87b71

Browse files
Changing default width to 30
1 parent c0673d2 commit 0c87b71

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
@@ -38,7 +38,7 @@ let getTableConfig = () => {
3838
2: {alignment: 'left', width: 100}
3939
},
4040
columnDefault: {
41-
width: 25,
41+
width: 30,
4242
},
4343
columnCount: 3,
4444
};

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ describe("syncSpecsLogs", () => {
9292
syncSpecsLogs.__set__('getBorderConfig', getBorderConfigStub);
9393

9494
let options = getTableConfig();
95-
expect(options.columnDefault.width).to.equal(25);
95+
expect(options.columnDefault.width).to.equal(30);
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);

0 commit comments

Comments
 (0)