aboutsummaryrefslogtreecommitdiff
path: root/bench/log/bun.js
diff options
context:
space:
mode:
Diffstat (limited to 'bench/log/bun.js')
-rw-r--r--bench/log/bun.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/bench/log/bun.js b/bench/log/bun.js
index 70ba6ccab..43728fd64 100644
--- a/bench/log/bun.js
+++ b/bench/log/bun.js
@@ -1,4 +1,5 @@
import { bench, run } from "mitata";
-bench("console.log", () => console.log("hello"));
+bench("console.log('hello')", () => console.log("hello"));
+bench("console.log({ hello: 'object' })", () => console.log({ hello: "object" }));
await run();