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/chat/server_test.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'std/examples/chat/server_test.ts') diff --git a/std/examples/chat/server_test.ts b/std/examples/chat/server_test.ts index 5e30b4ba7..9bc1c9823 100644 --- a/std/examples/chat/server_test.ts +++ b/std/examples/chat/server_test.ts @@ -14,6 +14,7 @@ async function startServer(): Promise< cmd: [ Deno.execPath(), "run", + "--quiet", "--allow-net", "--allow-read", "server.ts", -- cgit v1.2.3