diff options
author | Florian Dold <florian@dold.me> | 2021-01-15 18:43:28 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2021-01-15 18:43:28 +0100 |
commit | e273724b1c7eb88bcf332d07eff9ef1d21a1622b (patch) | |
tree | 58635f947bf3f1bad2e28872276973669e9e538a /packages | |
parent | 69b58e65eee5a8d8c6a4571af9fbf33a414043ef (diff) |
remove debug delay in test
Diffstat (limited to 'packages')
-rw-r--r-- | packages/taler-wallet-cli/src/integrationtests/test-revocation.ts | 6 |
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(); |