taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit a51abcffb04e29880170fb3aac550e5dc06e01d0
parent e653fc6f58c26dbb4a10b5b89a24865dd814fe68
Author: Florian Dold <florian@dold.me>
Date:   Mon, 24 Jan 2022 22:44:17 +0100

make refund-gone test case pass again (see #7158)

Diffstat:
Mpackages/taler-util/src/time.ts | 1+
Mpackages/taler-wallet-cli/src/harness/helpers.ts | 6++++--
2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/packages/taler-util/src/time.ts b/packages/taler-util/src/time.ts @@ -77,6 +77,7 @@ export namespace Duration { } return Math.ceil(d.d_ms / 1000 / 60 / 60 / 24 / 365); } + export const fromSpec = durationFromSpec; } export namespace Timestamp { diff --git a/packages/taler-wallet-cli/src/harness/helpers.ts b/packages/taler-wallet-cli/src/harness/helpers.ts @@ -50,7 +50,7 @@ import { MerchantPrivateApi, HarnessExchangeBankAccount, WithAuthorization, - getPayto + getPayto, } from "./harness.js"; import { WalletApiOperation } from "@gnu-taler/taler-wallet-core"; @@ -120,12 +120,14 @@ export async function createSimpleTestkudosEnvironment( id: "default", name: "Default Instance", paytoUris: [getPayto("merchant-default")], + defaultWireTransferDelay: Duration.fromSpec({ minutes: 1 }), }); await merchant.addInstance({ id: "minst1", name: "minst1", paytoUris: [getPayto("minst1")], + defaultWireTransferDelay: Duration.fromSpec({ minutes: 1 }), }); console.log("setup done!"); @@ -270,7 +272,7 @@ export async function startWithdrawViaBank( exchangeBaseUrl: exchange.baseUrl, talerWithdrawUri: wop.taler_withdraw_uri, }); - + // Confirm it await BankApi.confirmWithdrawalOperation(bank, user, wop);