commit e273724b1c7eb88bcf332d07eff9ef1d21a1622b parent 69b58e65eee5a8d8c6a4571af9fbf33a414043ef Author: Florian Dold <florian@dold.me> Date: Fri, 15 Jan 2021 18:43:28 +0100 remove debug delay in test Diffstat:
| M | packages/taler-wallet-cli/src/integrationtests/test-revocation.ts | | | 6 | ++---- |
1 file 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 @@ -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();