diff options
Diffstat (limited to 'bench/fetch/bun.js')
-rw-r--r-- | bench/fetch/bun.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/bench/fetch/bun.js b/bench/fetch/bun.js new file mode 100644 index 000000000..f61eeb0c6 --- /dev/null +++ b/bench/fetch/bun.js @@ -0,0 +1,17 @@ +import { bench, run } from "mitata"; + +const count = 100; + +bench(`fetch(https://example.com) x ${count}`, async () => { + const requests = new Array(count); + + for (let i = 0; i < requests.length; i++) { + requests[i] = fetch(`https://www.example.com/?cachebust=${i}`).then((r) => + r.text() + ); + } + + await Promise.all(requests); +}); + +await run(); |