Skip to content

Commit

Permalink
chore: fix debug lines duration
Browse files Browse the repository at this point in the history
  • Loading branch information
asambstack committed Jan 30, 2023
1 parent dbc2843 commit 46f113b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/helpers/sync/specsSummary.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ let printSpecsRunSummary = (data, machines, customErrorsToPrint) => {

logger.info(`Total tests: ${summary.total}, passed: ${summary.passed}, failed: ${summary.failed}, skipped: ${summary.skipped}, passed_with_skipped: ${summary.passed_with_skipped}, pending: ${summary.pending}`);
logger.info(`Done in ${data.duration} seconds using ${data.parallels} machines\n`);
winstonlogger.debug(`CLI calculated duration is ${data.cliDuration}\n`);
winstonlogger.debug(`CLI calculated duration is ${data.cliDuration/1000}`);

if (customErrorsToPrint && customErrorsToPrint.length > 0) {
for (const error of customErrorsToPrint) {
Expand Down

0 comments on commit 46f113b

Please sign in to comment.