commit 4e8c082c57c870090f68fd62b1caf61116375601
parent 3b3fb598eb2e8aab88010d86e133dcb27caf296e
Author: Florian Dold <dold@taler.net>
Date: Sun, 9 Aug 2026 17:53:25 +0200
harness: make integration tests quiet by default
Diffstat:
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/packages/taler-harness/src/index.ts b/packages/taler-harness/src/index.ts
@@ -1961,7 +1961,11 @@ talerHarnessCli
help: "Exit after the first error",
})
.flag("quiet", ["--quiet"], {
- help: "Produce less output.",
+ help: "Produce less output (default).",
+ default: true,
+ })
+ .flag("verbose", ["-V", "--verbose"], {
+ help: "Produce verbose output on stdout.",
})
.flag("noTimeout", ["--no-timeout"], {
help: "Do not time out tests.",
@@ -1975,7 +1979,7 @@ talerHarnessCli
waitOnFail: args.runIntegrationtests.waitOnFail,
suiteSpec: args.runIntegrationtests.suites,
dryRun: args.runIntegrationtests.dryRun,
- verbosity: args.runIntegrationtests.quiet ? 0 : 1,
+ verbosity: args.runIntegrationtests.verbose ? 1 : 0,
includeExperimental: args.runIntegrationtests.experimental ?? false,
strictTodo: args.runIntegrationtests.strictTodo ?? false,
noTimeout: noTimeout ?? args.runIntegrationtests.noTimeout,