Skip to content

Commit

Permalink
Better CI log format
Browse files Browse the repository at this point in the history
  • Loading branch information
muodov committed Dec 6, 2024
1 parent 404f306 commit da05532
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion reporters/CLIReporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ class CLIReporter extends BaseReporter {
fail: (data.failures / finished * 100).toFixed(1)
});
} else {
this.alwaysLog(`Finished: ${finished} Failed: ${data.failures} Total: ${data.urls}`);
const currentTime = new Date().toUTCString();
this.alwaysLog(`${currentTime} | Finished: ${finished} | Failed: ${data.failures} | Total: ${data.urls}`);
}
}

Expand Down

0 comments on commit da05532

Please sign in to comment.