From e35e8981f0280905836d3b68fd5ceb6e3c2bc270 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 20 Nov 2020 18:01:58 +0100 Subject: 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. --- std/examples/xeval_test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'std/examples/xeval_test.ts') 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 { const p = Deno.run({ - cmd: [Deno.execPath(), "run", xevalPath, "("], + cmd: [Deno.execPath(), "run", "--quiet", xevalPath, "("], cwd: moduleDir, stdin: "null", stdout: "piped", -- cgit v1.2.3