summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-01-15 18:43:28 +0100
committerFlorian Dold <florian@dold.me>2021-01-15 18:43:28 +0100
commite273724b1c7eb88bcf332d07eff9ef1d21a1622b (patch)
tree58635f947bf3f1bad2e28872276973669e9e538a
parent69b58e65eee5a8d8c6a4571af9fbf33a414043ef (diff)
downloadwallet-core-e273724b1c7eb88bcf332d07eff9ef1d21a1622b.tar.gz
wallet-core-e273724b1c7eb88bcf332d07eff9ef1d21a1622b.tar.bz2
wallet-core-e273724b1c7eb88bcf332d07eff9ef1d21a1622b.zip
remove debug delay in test
-rw-r--r--packages/taler-wallet-cli/src/integrationtests/test-revocation.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/packages/taler-wallet-cli/src/integrationtests/test-revocation.ts b/packages/taler-wallet-cli/src/integrationtests/test-revocation.ts
index 6e3a8f7a2..421b9a30f 100644
--- a/packages/taler-wallet-cli/src/integrationtests/test-revocation.ts
+++ b/packages/taler-wallet-cli/src/integrationtests/test-revocation.ts
@@ -48,11 +48,9 @@ async function revokeAllWalletCoins(req: {
for (const x of usedDenomHashes.values()) {
await exchange.revokeDenomination(x);
}
- console.log("waiting 30 seconds after revocation");
- await delayMs(30000);
+ await delayMs(1000);
await exchange.keyup();
- console.log("waiting 30 seconds after keyup");
- await delayMs(30000);
+ await delayMs(1000);
await merchant.stop();
await merchant.start();
await merchant.pingUntilAvailable();