summaryrefslogtreecommitdiff
path: root/std/examples/test.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-11-20 18:01:58 +0100
committerGitHub <noreply@github.com>2020-11-20 18:01:58 +0100
commite35e8981f0280905836d3b68fd5ceb6e3c2bc270 (patch)
tree6dafe7635d79c8b2c92fb32bfc43e33b46c77a25 /std/examples/test.ts
parent91f293442d5bfb28212b5b13b536ceae06427c99 (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/test.ts')
-rw-r--r--std/examples/test.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/std/examples/test.ts b/std/examples/test.ts
index a7b09d5bc..cf4d821f9 100644
--- a/std/examples/test.ts
+++ b/std/examples/test.ts
@@ -19,6 +19,7 @@ Deno.test("catSmoke", async function (): Promise<void> {
cmd: [
Deno.execPath(),
"run",
+ "--quiet",
"--allow-read",
relative(Deno.cwd(), resolve(moduleDir, "cat.ts")),
relative(Deno.cwd(), resolve(moduleDir, "..", "README.md")),