summaryrefslogtreecommitdiff
path: root/std/examples/catj_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/examples/catj_test.ts')
-rw-r--r--std/examples/catj_test.ts9
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",