aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-harness/src/integrationtests/test-deposit.ts
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-01-18 17:32:34 -0300
committerSebastian <sebasjm@gmail.com>2023-01-18 17:32:34 -0300
commitfdc7b5827742f6c692d4c8c1431b9042e67b748c (patch)
tree6a687f0aa55cce257e587f26f167239d46ca5df4 /packages/taler-harness/src/integrationtests/test-deposit.ts
parent4bd9b1ba79af12d5916e0ab308acd40935a813ec (diff)
parentd7fe5b0cb5472becfafa7123f880d26d8efd2f8f (diff)
Merge branch 'master' of git.taler.net:wallet-core
Diffstat (limited to 'packages/taler-harness/src/integrationtests/test-deposit.ts')
-rw-r--r--packages/taler-harness/src/integrationtests/test-deposit.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/taler-harness/src/integrationtests/test-deposit.ts b/packages/taler-harness/src/integrationtests/test-deposit.ts
index 07382c43e..e4ca08789 100644
--- a/packages/taler-harness/src/integrationtests/test-deposit.ts
+++ b/packages/taler-harness/src/integrationtests/test-deposit.ts
@@ -54,11 +54,10 @@ export async function runDepositTest(t: GlobalTestState) {
WalletApiOperation.GetTransactions,
{},
);
+
console.log("transactions", JSON.stringify(transactions, undefined, 2));
t.assertDeepEqual(transactions.transactions[0].type, "withdrawal");
- t.assertTrue(!transactions.transactions[0].pending);
t.assertDeepEqual(transactions.transactions[1].type, "deposit");
- t.assertTrue(!transactions.transactions[1].pending);
// The raw amount is what ends up on the bank account, which includes
// deposit and wire fees.
t.assertDeepEqual(transactions.transactions[1].amountRaw, "TESTKUDOS:9.79");