diff options
author | Florian Dold <florian@dold.me> | 2022-09-05 12:29:32 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2022-09-05 12:29:32 +0200 |
commit | b1f77f4662e8198d0e02e74d43fd6d1f82ce2fb0 (patch) | |
tree | 8ac025a89c8df133df6808baa365aacddfacdf29 /packages/taler-wallet-cli/src/integrationtests/testrunner.ts | |
parent | 4aaece0eff2e5cccfcb21a3ae9ec99b59f3f96a2 (diff) |
add integration test for p2p age restrictions
Diffstat (limited to 'packages/taler-wallet-cli/src/integrationtests/testrunner.ts')
-rw-r--r-- | packages/taler-wallet-cli/src/integrationtests/testrunner.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/taler-wallet-cli/src/integrationtests/testrunner.ts b/packages/taler-wallet-cli/src/integrationtests/testrunner.ts index 699057304..de6e246d3 100644 --- a/packages/taler-wallet-cli/src/integrationtests/testrunner.ts +++ b/packages/taler-wallet-cli/src/integrationtests/testrunner.ts @@ -25,7 +25,7 @@ import { shouldLingerInTest, TestRunResult, } from "../harness/harness.js"; -import { runAgeRestrictionsTest } from "./test-age-restrictions.js"; +import { runAgeRestrictionsMerchantTest } from "./test-age-restrictions-merchant.js"; import { runBankApiTest } from "./test-bank-api.js"; import { runClaimLoopTest } from "./test-claim-loop.js"; import { runClauseSchnorrTest } from "./test-clause-schnorr.js"; @@ -90,6 +90,7 @@ import { runWithdrawalAbortBankTest } from "./test-withdrawal-abort-bank.js"; import { runWithdrawalBankIntegratedTest } from "./test-withdrawal-bank-integrated.js"; import { runWithdrawalFakebankTest } from "./test-withdrawal-fakebank.js"; import { runTestWithdrawalManualTest } from "./test-withdrawal-manual.js"; +import { runAgeRestrictionsPeerTest } from "./test-age-restrictions-peer.js"; /** * Test runner. @@ -106,7 +107,8 @@ interface TestMainFunction { } const allTests: TestMainFunction[] = [ - runAgeRestrictionsTest, + runAgeRestrictionsMerchantTest, + runAgeRestrictionsPeerTest, runBankApiTest, runClaimLoopTest, runClauseSchnorrTest, |