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:
Bartek Iwańczuk 2020-11-20 18:01:58 +01:00 committed by GitHub
parent 91f293442d
commit e35e8981f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 34 additions and 9 deletions

View file

@ -19,6 +19,7 @@ Deno.test("catSmoke", async function (): Promise<void> {
cmd: [
Deno.execPath(),
"run",
"--quiet",
"--allow-read",
relative(Deno.cwd(), resolve(moduleDir, "cat.ts")),
relative(Deno.cwd(), resolve(moduleDir, "..", "README.md")),