diff options
Diffstat (limited to 'bench/hot-module-reloading/css-stress-test/read-frames.js')
-rw-r--r-- | bench/hot-module-reloading/css-stress-test/read-frames.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bench/hot-module-reloading/css-stress-test/read-frames.js b/bench/hot-module-reloading/css-stress-test/read-frames.js index ab35c630d..9e264b4df 100644 --- a/bench/hot-module-reloading/css-stress-test/read-frames.js +++ b/bench/hot-module-reloading/css-stress-test/read-frames.js @@ -70,9 +70,9 @@ fs.writeFileSync( `${process.platform}-${ process.arch === "arm64" ? "aarch64" : process.arch }` + - ".json" + ".json", ), - JSON.stringify(report, null, 2) + JSON.stringify(report, null, 2), ); console.log( @@ -101,7 +101,7 @@ console.log( TOTAL_FRAMES, "(" + Math.round( - Math.max(Math.min(1.0, timings.length / TOTAL_FRAMES), 0) * 100 + Math.max(Math.min(1.0, timings.length / TOTAL_FRAMES), 0) * 100, ) + - "%)" + "%)", ); |