aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-harness/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-harness/src/index.ts')
-rw-r--r--packages/taler-harness/src/index.ts22
1 files changed, 14 insertions, 8 deletions
diff --git a/packages/taler-harness/src/index.ts b/packages/taler-harness/src/index.ts
index 889fbe4ca..561d70c4f 100644
--- a/packages/taler-harness/src/index.ts
+++ b/packages/taler-harness/src/index.ts
@@ -64,12 +64,12 @@ import {
delayMs,
runTestWithState,
} from "./harness/harness.js";
-import { getTestInfo, runTests } from "./integrationtests/testrunner.js";
-import { lintExchangeDeployment } from "./lint.js";
import {
createSimpleTestkudosEnvironmentV2,
createWalletDaemonWithClient,
} from "./harness/helpers.js";
+import { getTestInfo, runTests } from "./integrationtests/testrunner.js";
+import { lintExchangeDeployment } from "./lint.js";
const logger = new Logger("taler-harness:index.ts");
@@ -396,8 +396,10 @@ deploymentCli
const merchantClient = new MerchantApiClient(
args.tipTopup.merchantBaseUrl,
{
- method: "token",
- token: args.tipTopup.merchantApikey,
+ auth: {
+ method: "token",
+ token: args.tipTopup.merchantApikey,
+ },
},
);
@@ -447,8 +449,10 @@ deploymentCli
const merchantClient = new MerchantApiClient(
args.tipCleanup.merchantBaseUrl,
{
- method: "token",
- token: args.tipCleanup.merchantApikey,
+ auth: {
+ method: "token",
+ token: args.tipCleanup.merchantApikey,
+ },
},
);
@@ -567,8 +571,10 @@ deploymentCli
const merchantClient = new MerchantApiClient(
args.tipStatus.merchantBaseUrl,
{
- method: "token",
- token: args.tipStatus.merchantApikey,
+ auth: {
+ method: "token",
+ token: args.tipStatus.merchantApikey,
+ },
},
);