summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-cli/src/integrationtests/test-payment-on-demo.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-08-19 13:48:36 +0200
committerFlorian Dold <florian@dold.me>2021-08-19 13:48:45 +0200
commit3ce740d87dc51c2f9a330d3e12237ba1fdd5f2e7 (patch)
treef47e2abbfab0d54fc198407fae1e8a250c010362 /packages/taler-wallet-cli/src/integrationtests/test-payment-on-demo.ts
parent97a05ff659af274dcfcd9c76bf19100bbd51ce0e (diff)
downloadwallet-core-3ce740d87dc51c2f9a330d3e12237ba1fdd5f2e7.tar.gz
wallet-core-3ce740d87dc51c2f9a330d3e12237ba1fdd5f2e7.tar.bz2
wallet-core-3ce740d87dc51c2f9a330d3e12237ba1fdd5f2e7.zip
store 'list issue date' of denoms, cleanup
Diffstat (limited to 'packages/taler-wallet-cli/src/integrationtests/test-payment-on-demo.ts')
-rw-r--r--packages/taler-wallet-cli/src/integrationtests/test-payment-on-demo.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-cli/src/integrationtests/test-payment-on-demo.ts b/packages/taler-wallet-cli/src/integrationtests/test-payment-on-demo.ts
index d490a8c1b..0dabc9ca5 100644
--- a/packages/taler-wallet-cli/src/integrationtests/test-payment-on-demo.ts
+++ b/packages/taler-wallet-cli/src/integrationtests/test-payment-on-demo.ts
@@ -24,8 +24,6 @@ import {
BankAccessApi
} from "./harness";
import {
- createSimpleTestkudosEnvironment,
- withdrawViaBank,
makeTestPayment,
} from "./helpers";
import { WalletApiOperation } from "@gnu-taler/taler-wallet-core";
@@ -96,4 +94,6 @@ export async function runPaymentDemoTest(t: GlobalTestState) {
t.assertTrue(balanceAfter["balances"].length == 1);
t.assertTrue(balanceBefore["balances"][0]["available"] > balanceAfter["balances"][0]["available"]);
}
+
+runPaymentDemoTest.excludeByDefault = true;
runPaymentDemoTest.suites = ["buildbot"];