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/welcome_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/welcome_test.ts')
-rw-r--r-- | std/examples/welcome_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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", }); |