taler-typescript-core

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

commit 115773435d43f66493f7b45032659a4ba6f0e943
parent f55ae63de5cf0566c8e3dd68d6f40ffe82fd7a76
Author: Florian Dold <florian@dold.me>
Date:   Sat, 26 Apr 2025 00:56:57 +0200

harness: test that deletion actually deletes transactions

Diffstat:
Mpackages/taler-harness/src/integrationtests/test-peer-push.ts | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/packages/taler-harness/src/integrationtests/test-peer-push.ts b/packages/taler-harness/src/integrationtests/test-peer-push.ts @@ -373,6 +373,10 @@ export async function runPeerPushTest(t: GlobalTestState) { transactionId: txn.transactionId, }); } + const txn2 = await w.call(WalletApiOperation.GetTransactionsV2, { + includeAll: true, + }); + t.assertDeepEqual(txn2.transactions.length, 0); }; await delAll(wallet1); await delAll(wallet2);