diff options
author | Sebastian <sebasjm@gmail.com> | 2023-01-18 17:32:34 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-01-18 17:32:34 -0300 |
commit | fdc7b5827742f6c692d4c8c1431b9042e67b748c (patch) | |
tree | 6a687f0aa55cce257e587f26f167239d46ca5df4 /packages/taler-harness/src/index.ts | |
parent | 4bd9b1ba79af12d5916e0ab308acd40935a813ec (diff) | |
parent | d7fe5b0cb5472becfafa7123f880d26d8efd2f8f (diff) |
Merge branch 'master' of git.taler.net:wallet-core
Diffstat (limited to 'packages/taler-harness/src/index.ts')
-rw-r--r-- | packages/taler-harness/src/index.ts | 8 |
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, }); }); |