Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/helpers/reporterHTML.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ function renderReportHTML(report_data) {
let resultsDir = 'results';
let metaCharSet = `<meta charset="utf-8">`;
let metaViewPort = `<meta name="viewport" content="width=device-width, initial-scale=1"> `;
let pageTitle = `<title> Browserstack Cypress Report </title>`;
let pageTitle = `<title> BrowserStack Cypress Report </title>`;
let inlineCss = `<style type="text/css"> ${loadInlineCss()} </style>`;
let head = `<head> ${metaCharSet} ${metaViewPort} ${pageTitle} ${inlineCss} </head>`;
let htmlOpenTag = `<!DOCTYPE HTML><html>`;
Expand Down
2 changes: 1 addition & 1 deletion bin/helpers/sync/syncSpecsLogs.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ let getTableConfig = () => {
border: getBorderConfig(),
columns: {
1: {alignment: 'center', width: 1},
2: {alignment: 'left', width: 50}
2: {alignment: 'left', width: 100}
},
columnDefault: {
width: 25,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/bin/helpers/sync/syncSpecsLogs.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ describe("syncSpecsLogs", () => {
expect(options.columns[1].alignment).to.equal('center');
expect(options.columns[2].alignment).to.equal('left');
expect(options.columns[1].width).to.equal(1);
expect(options.columns[2].width).to.equal(50);
expect(options.columns[2].width).to.equal(100);
expect(options.columnCount).to.equal(3);
expect(getBorderConfigStub.calledOnce).to.be.true;
});
Expand Down