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/cat_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/cat_test.ts')
-rw-r--r-- | std/examples/cat_test.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/std/examples/cat_test.ts b/std/examples/cat_test.ts index cd88d1f3d..e151d5c62 100644 --- a/std/examples/cat_test.ts +++ b/std/examples/cat_test.ts @@ -10,6 +10,7 @@ Deno.test("[examples/cat] print multiple files", async () => { cmd: [ Deno.execPath(), "run", + "--quiet", "--allow-read", "cat.ts", "testdata/cat/hello.txt", |