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 69bd7b8 commit afde60bCopy full SHA for afde60b
bin/helpers/sync/syncSpecsLogs.js
@@ -15,9 +15,10 @@ let specSummary = {
15
}
16
let noWrap = (process.env.SYNC_NO_WRAP || false);
17
let terminalWidth = (process.stdout.columns) * 0.9;
18
-let lineSeparator = "\n--------------------------------------------------------------------------------";
+let lineSeparator = "\n" + "-".repeat(terminalWidth);
19
+// Do not show the separator based on terminal width if no-wrap provided.
20
if (noWrap) {
- lineSeparator = "\n" + "-".repeat(terminalWidth);
21
+ lineSeparator = "\n--------------------------------------------------------------------------------";
22
23
24
let getOptions = (auth, build_id) => {
0 commit comments