Skip to content

Commit

Permalink
fixup of the table
Browse files Browse the repository at this point in the history
  • Loading branch information
beta-ziliani committed Jan 25, 2025
1 parent 7c5aa88 commit a21f8db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ afterAll(() => {
var timeTable = "| File | Total (ms) | Setup (ms) | Build (ms) | Resolution Total (ms) | Resolution Max (ms) | Resolution mean (ms) | Resolution std (ms) |\n";
timeTable += "|:-----|------:|------:|------:|------:|------:|------:|------:|\n";
records.forEach((record) => {
timeTable += `${record.file.split("/").pop()} | ${record.totalTime} | ${record.setupTime} | ${record.buildGraphTime} | ${record.resolutionTime} | ${record.maxGoto} | ${record.meanGoto} | ${record.stdGoto} |\n`;
timeTable += `| ${record.file.split("/").pop()} | ${record.totalTime} | ${record.setupTime} | ${record.buildGraphTime} | ${record.resolutionTime} | ${record.maxGoto} | ${record.meanGoto} | ${record.stdGoto} |\n`;
});
console.log(timeTable);
});
Expand Down

0 comments on commit a21f8db

Please sign in to comment.