diff options
Diffstat (limited to 'bench/fetch/deno.js')
-rw-r--r-- | bench/fetch/deno.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/bench/fetch/deno.js b/bench/fetch/deno.js new file mode 100644 index 000000000..929a478a0 --- /dev/null +++ b/bench/fetch/deno.js @@ -0,0 +1,17 @@ +import { bench, run } from "https://esm.run/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(); |