commit 3e4377a6abe11b1de27b7e8dc6e0596f46e9b8b2
parent 538879dadeb07ab1e791698feb1df5cab09e1eec
Author: Florian Dold <florian@dold.me>
Date: Mon, 20 Oct 2025 16:43:04 +0200
harness: logging
Diffstat:
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/packages/taler-harness/src/integrationtests/test-denom-lost-complex.ts b/packages/taler-harness/src/integrationtests/test-denom-lost-complex.ts
@@ -81,10 +81,13 @@ export async function runDenomLostComplexTest(t: GlobalTestState) {
await exchange.purgeSecmodKeys();
+ t.logStep("before-skip-keyup");
await exchange.start({
skipKeyup: true,
});
+ t.logStep("after-skip-keyup");
+
await wireGatewayApiClient.addIncoming({
auth: exchangeBankAccount.wireGatewayAuth,
body: {
@@ -94,15 +97,21 @@ export async function runDenomLostComplexTest(t: GlobalTestState) {
},
});
+ t.logStep("after-add-incoming");
+
await walletClient.call(WalletApiOperation.TestingWaitTransactionState, {
transactionId: wres.transactionId,
txState: WithdrawalGroupStatus.PendingRedenominate,
});
+ t.logStep("after-wait-pending-redenominate");
+
// This time, start without skipping key update
await exchange.stop();
await exchange.start();
+ t.logStep("after-exchange-restart");
+
await walletClient.call(WalletApiOperation.TestingWaitTransactionState, {
transactionId: wres.transactionId,
txState: {
@@ -110,6 +119,8 @@ export async function runDenomLostComplexTest(t: GlobalTestState) {
},
});
+ t.logStep("after-wait-done");
+
const txns = await walletClient.call(
WalletApiOperation.GetTransactionsV2,
{},