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/chat | |
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/chat')
-rw-r--r-- | std/examples/chat/server_test.ts | 1 |
1 files changed, 1 insertions, 0 deletions
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", |