diff --git a/bin/plugin/commands/performance.js b/bin/plugin/commands/performance.js index 60416d9bf1bd9..7f0c95a318429 100644 --- a/bin/plugin/commands/performance.js +++ b/bin/plugin/commands/performance.js @@ -541,7 +541,6 @@ async function runPerformanceTests( refs, options ) { // Formatting the results. for ( const testSuite of testSuites ) { logAction( `${ testSuite }\n` ); - /** @type {Record>} */ const invertedResult = {}; Object.entries( results[ testSuite ] ).reduce( @@ -561,6 +560,7 @@ async function runPerformanceTests( refs, options ) { invertedResult ); console.table( invertedResult ); + logNewline(); const resultsFilename = testSuite + '.performance-results.json'; writeJSONFile( @@ -569,7 +569,6 @@ async function runPerformanceTests( refs, options ) { ); } - logNewline(); console.timeEnd( TIMERS.total ); logNewline(); }