mirror of
https://github.com/denoland/deno.git
synced 2025-10-02 23:24:37 +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
|
@ -38,6 +38,7 @@ Deno.test({
|
|||
cmd: [
|
||||
Deno.execPath(),
|
||||
"run",
|
||||
"--quiet",
|
||||
xevalPath,
|
||||
"--replvar=abc",
|
||||
"console.log(abc)",
|
||||
|
@ -58,7 +59,7 @@ Deno.test({
|
|||
|
||||
Deno.test("xevalCliSyntaxError", async function (): Promise<void> {
|
||||
const p = Deno.run({
|
||||
cmd: [Deno.execPath(), "run", xevalPath, "("],
|
||||
cmd: [Deno.execPath(), "run", "--quiet", xevalPath, "("],
|
||||
cwd: moduleDir,
|
||||
stdin: "null",
|
||||
stdout: "piped",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue