aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-harness/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-harness/src/index.ts')
-rw-r--r--packages/taler-harness/src/index.ts8
1 files changed, 7 insertions, 1 deletions
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,
});
});