aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-harness/src/index.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-01-18 19:58:30 +0100
committerFlorian Dold <florian@dold.me>2023-01-18 19:58:30 +0100
commit785f8163ca140532ab3604826dc790b7cec2f36d (patch)
tree902649353e21c37b0fa2abd2edd22b85f235ea3a /packages/taler-harness/src/index.ts
parent598de5b0d576987ea317b22fd6d33cbe4a1a19ac (diff)
downloadwallet-core-785f8163ca140532ab3604826dc790b7cec2f36d.tar.xz
harness: mark some tests as experimental
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,
});
});