aboutsummaryrefslogtreecommitdiff
path: root/bench/async-overhead.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'bench/async-overhead.mjs')
-rw-r--r--bench/async-overhead.mjs7
1 files changed, 0 insertions, 7 deletions
diff --git a/bench/async-overhead.mjs b/bench/async-overhead.mjs
deleted file mode 100644
index 1fe94f15b..000000000
--- a/bench/async-overhead.mjs
+++ /dev/null
@@ -1,7 +0,0 @@
-import { run, bench } from "mitata";
-
-bench("async", async () => 1);
-bench("await 1", async () => await 1);
-bench("noop", () => {});
-
-await run();