diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-11-20 18:01:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-20 18:01:58 +0100 |
commit | e35e8981f0280905836d3b68fd5ceb6e3c2bc270 (patch) | |
tree | 6dafe7635d79c8b2c92fb32bfc43e33b46c77a25 /std/examples/xeval_test.ts | |
parent | 91f293442d5bfb28212b5b13b536ceae06427c99 (diff) |
test(std): make test output less noisy (#8445)
This commit makes output of std/ tests less noisy
by passing "--quiet" flag to Deno subprocesses run
as part of test suite.
Diffstat (limited to 'std/examples/xeval_test.ts')
-rw-r--r-- | std/examples/xeval_test.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/std/examples/xeval_test.ts b/std/examples/xeval_test.ts index 6d24d08bb..fc244d853 100644 --- a/std/examples/xeval_test.ts +++ b/std/examples/xeval_test.ts @@ -38,6 +38,7 @@ Deno.test({ cmd: [ Deno.execPath(), "run", + "--quiet", xevalPath, "--replvar=abc", "console.log(abc)", @@ -58,7 +59,7 @@ Deno.test({ Deno.test("xevalCliSyntaxError", async function (): Promise<void> { const p = Deno.run({ - cmd: [Deno.execPath(), "run", xevalPath, "("], + cmd: [Deno.execPath(), "run", "--quiet", xevalPath, "("], cwd: moduleDir, stdin: "null", stdout: "piped", |