summaryrefslogtreecommitdiff
path: root/cli/bench/spawn.js
blob: f5a658f3f1a7576885a38dedee92950091b6ee9c (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.

Deno.bench("echo deno", async () => {
  await Deno.spawn("echo", { args: ["deno"] });
});

Deno.bench("cat 128kb", async () => {
  await Deno.spawn("cat", {
    args: ["./cli/bench/testdata/128k.bin"],
  });
});