summaryrefslogtreecommitdiff
path: root/tests/testdata/run/warn_on_deprecated_api/mod.ts
blob: f74632b2cdfed0d2de1332689ffd68b803bafef6 (plain)
1
2
3
4
5
6
7
8
9
10
11
export async function runEcho() {
  const p = Deno.run({
    cmd: [
      Deno.execPath(),
      "eval",
      "console.log('hello world')",
    ],
  });
  await p.status();
  p.close();
}