aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-harness/src/integrationtests/testrunner.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-04-05 18:19:14 +0200
committerFlorian Dold <florian@dold.me>2023-04-05 18:19:14 +0200
commit3cf6d15eae299576eada8b501e5848ef29dad03c (patch)
tree67f9ba90f9ef96376168d522c5c1461b1d2259fd /packages/taler-harness/src/integrationtests/testrunner.ts
parent451400b3a4a0d22a3b6f00cd7c66cec376bcb991 (diff)
downloadwallet-core-3cf6d15eae299576eada8b501e5848ef29dad03c.tar.xz
taler-harness: new test
Diffstat (limited to 'packages/taler-harness/src/integrationtests/testrunner.ts')
-rw-r--r--packages/taler-harness/src/integrationtests/testrunner.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/taler-harness/src/integrationtests/testrunner.ts b/packages/taler-harness/src/integrationtests/testrunner.ts
index a20300e02..38047a850 100644
--- a/packages/taler-harness/src/integrationtests/testrunner.ts
+++ b/packages/taler-harness/src/integrationtests/testrunner.ts
@@ -101,6 +101,7 @@ import { runPaymentAbortTest } from "./test-payment-abort.js";
import { runWithdrawalFeesTest } from "./test-withdrawal-fees.js";
import { runWalletBalanceTest } from "./test-wallet-balance.js";
import { runPaymentTemplateTest } from "./test-payment-template.js";
+import { runExchangeDepositTest } from "./test-exchange-deposit.js";
/**
* Test runner.
@@ -131,6 +132,7 @@ const allTests: TestMainFunction[] = [
runFeeRegressionTest,
runForcedSelectionTest,
runKycTest,
+ runExchangeDepositTest,
runLibeufinAnastasisFacadeTest,
runLibeufinApiBankaccountTest,
runLibeufinApiBankconnectionTest,
@@ -340,7 +342,9 @@ export async function runTests(spec: TestRunSpec) {
console.log(`running ${testName} with timeout ${testTimeoutMs}ms`);
}
- const token = spec.noTimeout ? CancellationToken.CONTINUE : CancellationToken.timeout(testTimeoutMs).token;
+ const token = spec.noTimeout
+ ? CancellationToken.CONTINUE
+ : CancellationToken.timeout(testTimeoutMs).token;
const resultPromise: Promise<TestRunResult> = new Promise(
(resolve, reject) => {