mirror of
https://github.com/denoland/deno.git
synced 2025-09-28 13:14:48 +00:00
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.
This commit is contained in:
parent
91f293442d
commit
e35e8981f0
15 changed files with 34 additions and 9 deletions
|
@ -9,7 +9,7 @@ Deno.test("[examples/echo_server]", async () => {
|
|||
const encoder = new TextEncoder();
|
||||
const decoder = new TextDecoder();
|
||||
const process = Deno.run({
|
||||
cmd: [Deno.execPath(), "run", "--allow-net", "echo_server.ts"],
|
||||
cmd: [Deno.execPath(), "run", "--quiet", "--allow-net", "echo_server.ts"],
|
||||
cwd: moduleDir,
|
||||
stdout: "piped",
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue