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/welcome_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'std/examples/welcome_test.ts') diff --git a/std/examples/welcome_test.ts b/std/examples/welcome_test.ts index 626527bca..43da0e87b 100644 --- a/std/examples/welcome_test.ts +++ b/std/examples/welcome_test.ts @@ -7,7 +7,7 @@ const moduleDir = dirname(fromFileUrl(import.meta.url)); Deno.test("[examples/welcome] print a welcome message", async () => { const decoder = new TextDecoder(); const process = Deno.run({ - cmd: [Deno.execPath(), "run", "welcome.ts"], + cmd: [Deno.execPath(), "run", "--quiet", "welcome.ts"], cwd: moduleDir, stdout: "piped", }); -- cgit v1.2.3