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/catj_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/catj_test.ts')
| -rw-r--r-- | std/examples/catj_test.ts | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/std/examples/catj_test.ts b/std/examples/catj_test.ts index 031a161c9..7a2d968f4 100644 --- a/std/examples/catj_test.ts +++ b/std/examples/catj_test.ts @@ -82,7 +82,14 @@ function catj( ...files: string[] ): Deno.Process<Deno.RunOptions & { stdin: "piped"; stdout: "piped" }> { return Deno.run({ - cmd: [Deno.execPath(), "run", "--allow-read", "catj.ts", ...files], + cmd: [ + Deno.execPath(), + "run", + "--quiet", + "--allow-read", + "catj.ts", + ...files, + ], cwd: moduleDir, stdin: "piped", stdout: "piped", |
