From 933e7b37a7572e0737ab5dc0754a17748d85c0d5 Mon Sep 17 00:00:00 2001 From: Brooke Vibber Date: Tue, 23 Dec 2025 11:29:00 -0800 Subject: [PATCH] test --- arg-test/test-argy.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/arg-test/test-argy.js b/arg-test/test-argy.js index e41524a..d7bafc4 100644 --- a/arg-test/test-argy.js +++ b/arg-test/test-argy.js @@ -13,9 +13,15 @@ Module().then((module) => { ]; for (const bench of benches) { console.log(bench); + + // warmup + module[bench](); + const start = performance.now(); + // active module[bench](); const delta = performance.now() - start; + console.log(`${delta} ms`); } });