aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-harness/src/integrationtests/test-tipping.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-09-06 11:23:33 +0200
committerFlorian Dold <florian@dold.me>2023-09-06 11:23:33 +0200
commit9a1a3b350d4147243dbe2ecfcdcb846c0f3c6dcb (patch)
treef9b01f5748edf391146d2bbaec62aad285d261ec /packages/taler-harness/src/integrationtests/test-tipping.ts
parentc9a0d2eb968133b1ad156e1dc86e6c06dad09c7a (diff)
downloadwallet-core-9a1a3b350d4147243dbe2ecfcdcb846c0f3c6dcb.tar.xz
harness: get rid of deprecated merchant API client
Diffstat (limited to 'packages/taler-harness/src/integrationtests/test-tipping.ts')
-rw-r--r--packages/taler-harness/src/integrationtests/test-tipping.ts12
1 files changed, 3 insertions, 9 deletions
diff --git a/packages/taler-harness/src/integrationtests/test-tipping.ts b/packages/taler-harness/src/integrationtests/test-tipping.ts
index 53d7f08c8..93855f546 100644
--- a/packages/taler-harness/src/integrationtests/test-tipping.ts
+++ b/packages/taler-harness/src/integrationtests/test-tipping.ts
@@ -25,7 +25,6 @@ import {
import {
GlobalTestState,
MerchantApiClient,
- MerchantPrivateApi,
getWireMethodForTest,
} from "../harness/harness.js";
import { createSimpleTestkudosEnvironmentV2 } from "../harness/helpers.js";
@@ -46,12 +45,7 @@ export async function runTippingTest(t: GlobalTestState) {
});
const mbu = await bankAccessApiClient.createRandomBankUser();
- const merchantClient = new MerchantApiClient(
- merchant.makeInstanceBaseUrl("default"),
- {
- method: "external",
- },
- );
+ const merchantClient = new MerchantApiClient(merchant.makeInstanceBaseUrl());
const tipReserveResp = await merchantClient.createTippingReserve({
exchange_url: exchange.baseUrl,
@@ -85,7 +79,7 @@ export async function runTippingTest(t: GlobalTestState) {
await merchant.start();
await merchant.pingUntilAvailable();
- const r = await MerchantPrivateApi.queryTippingReserves(merchant, "default");
+ const r = await merchantClient.queryTippingReserves();
console.log("tipping reserves:", JSON.stringify(r, undefined, 2));
t.assertTrue(r.reserves.length === 1);
@@ -94,7 +88,7 @@ export async function runTippingTest(t: GlobalTestState) {
r.reserves[0].merchant_initial_amount,
);
- const tip = await MerchantPrivateApi.giveTip(merchant, "default", {
+ const tip = await merchantClient.giveTip({
amount: "TESTKUDOS:5",
justification: "why not?",
next_url: "https://example.com/after-tip",