taler-typescript-core

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

commit b2f3334d5f6065ac2f0c0fbf98f58cce6561471a
parent 9b61e7113b3ad4f23b32f30c5f62fc66d994b402
Author: Florian Dold <florian@dold.me>
Date:   Tue,  8 Jul 2025 11:57:56 +0200

harness: accommodate for statistics API change

Diffstat:
Mpackages/taler-harness/src/integrationtests/test-kyc-decision-events.ts | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/packages/taler-harness/src/integrationtests/test-kyc-decision-events.ts b/packages/taler-harness/src/integrationtests/test-kyc-decision-events.ts @@ -136,7 +136,10 @@ export async function runKycDecisionEventsTest(t: GlobalTestState) { console.log(j2s(evtResp)); - t.assertDeepEqual(evtResp.counter, 1); + t.assertDeepEqual( + evtResp.statistics.find((x: any) => x.event === "bla").counter, + 1, + ); } runKycDecisionEventsTest.suites = ["wallet"];