From 785f8163ca140532ab3604826dc790b7cec2f36d Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 18 Jan 2023 19:58:30 +0100 Subject: harness: mark some tests as experimental --- packages/taler-harness/src/index.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'packages/taler-harness/src/index.ts') diff --git a/packages/taler-harness/src/index.ts b/packages/taler-harness/src/index.ts index 632bd5877..a6decc4ab 100644 --- a/packages/taler-harness/src/index.ts +++ b/packages/taler-harness/src/index.ts @@ -229,7 +229,6 @@ deploymentConfigCli ); }); - testingCli.subcommand("logtest", "logtest").action(async (args) => { logger.trace("This is a trace message."); logger.info("This is an info message."); @@ -248,6 +247,9 @@ testingCli if (t.excludeByDefault) { s += ` [excluded by default]`; } + if (t.experimental) { + s += ` [experimental]`; + } console.log(s); } }); @@ -263,6 +265,9 @@ testingCli .flag("dryRun", ["--dry"], { help: "Only print tests that will be selected to run.", }) + .flag("experimental", ["--experimental"], { + help: "Include tests marked as experimental", + }) .flag("quiet", ["--quiet"], { help: "Produce less output.", }) @@ -272,6 +277,7 @@ testingCli suiteSpec: args.runIntegrationtests.suites, dryRun: args.runIntegrationtests.dryRun, verbosity: args.runIntegrationtests.quiet ? 0 : 1, + includeExperimental: args.runIntegrationtests.experimental ?? false, }); }); -- cgit v1.2.3