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

This commit is contained in:
Florian Dold 2022-01-24 22:44:17 +01:00
parent e653fc6f58
commit a51abcffb0
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
2 changed files with 5 additions and 2 deletions

View File

@ -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 {

View File

@ -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);