diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-12-02 14:43:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-02 14:43:17 +0100 |
| commit | 4d07ed0efa8f0e2cab1a33f1b7b6a3627bfce69f (patch) | |
| tree | 898aadf1ae739190ed98ec463824f7e9ca8f48eb /cli/tests/testdata/run/permission_test.ts | |
| parent | 6982c74e11ec8294ed5bd53d2a9d316d7e20e7d2 (diff) | |
chore: rewrite tests and utils to use Deno.Command API (#16895)
Since "Deno.spawn()", "Deno.spawnSync()" and "Deno.spawnChild"
are getting deprecated, this commits rewrites all tests and utilities to
use "Deno.Command" API instead.
Diffstat (limited to 'cli/tests/testdata/run/permission_test.ts')
| -rw-r--r-- | cli/tests/testdata/run/permission_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/testdata/run/permission_test.ts b/cli/tests/testdata/run/permission_test.ts index 9b5409b4f..a2312e3ac 100644 --- a/cli/tests/testdata/run/permission_test.ts +++ b/cli/tests/testdata/run/permission_test.ts @@ -16,9 +16,9 @@ const test: { [key: string]: (...args: any[]) => void | Promise<void> } = { Deno.listen({ transport: "tcp", port: 4541 }); }, async runRequired() { - await Deno.spawn(Deno.build.os === "windows" ? "cmd.exe" : "printf", { + await new Deno.Command(Deno.build.os === "windows" ? "cmd.exe" : "printf", { args: Deno.build.os === "windows" ? ["/c", "echo hello"] : ["hello"], - }); + }).output(); }, }; |
