taler-typescript-core

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

commit ec0ebb09e2829a6819c497a683aef9842d7ca25a
parent a8e5b9568284898518fcb95e244742c9fd3edc69
Author: Florian Dold <florian@dold.me>
Date:   Wed,  4 Aug 2021 12:49:46 +0200

adapt integration tests to new exchange configuration

Diffstat:
Mpackages/taler-wallet-cli/src/integrationtests/harness.ts | 13+++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/packages/taler-wallet-cli/src/integrationtests/harness.ts b/packages/taler-wallet-cli/src/integrationtests/harness.ts @@ -968,22 +968,27 @@ export class ExchangeService implements ExchangeServiceInterface { config.setString(`exchange-account-${localName}`, "enable_credit", "yes"); config.setString(`exchange-account-${localName}`, "enable_debit", "yes"); config.setString( - `exchange-account-${localName}`, + `exchange-accountcredentials-${localName}`, + "payto_uri", + exchangeBankAccount.accountPaytoUri, + ); + config.setString( + `exchange-accountcredentials-${localName}`, "wire_gateway_url", exchangeBankAccount.wireGatewayApiBaseUrl, ); config.setString( - `exchange-account-${localName}`, + `exchange-accountcredentials-${localName}`, "wire_gateway_auth_method", "basic", ); config.setString( - `exchange-account-${localName}`, + `exchange-accountcredentials-${localName}`, "username", exchangeBankAccount.accountName, ); config.setString( - `exchange-account-${localName}`, + `exchange-accountcredentials-${localName}`, "password", exchangeBankAccount.accountPassword, );