summaryrefslogtreecommitdiff
path: root/packages/taler-harness/src/integrationtests/testrunner.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-03-05 10:30:25 +0100
committerFlorian Dold <florian@dold.me>2024-03-05 10:30:30 +0100
commit63aedafd841f3a3d7d3b7974d4e5b8fbd02afd3d (patch)
tree98a92ffb670e63f2253ee9b2a068f7234634eda2 /packages/taler-harness/src/integrationtests/testrunner.ts
parent187031b9336e3c81aaa05c79e345adf5ac997980 (diff)
downloadwallet-core-63aedafd841f3a3d7d3b7974d4e5b8fbd02afd3d.tar.gz
wallet-core-63aedafd841f3a3d7d3b7974d4e5b8fbd02afd3d.tar.bz2
wallet-core-63aedafd841f3a3d7d3b7974d4e5b8fbd02afd3d.zip
wallet-core: have balance item even on zero balance
Also add a test for this.
Diffstat (limited to 'packages/taler-harness/src/integrationtests/testrunner.ts')
-rw-r--r--packages/taler-harness/src/integrationtests/testrunner.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/taler-harness/src/integrationtests/testrunner.ts b/packages/taler-harness/src/integrationtests/testrunner.ts
index 07bf8e34d..803e68e6b 100644
--- a/packages/taler-harness/src/integrationtests/testrunner.ts
+++ b/packages/taler-harness/src/integrationtests/testrunner.ts
@@ -87,6 +87,7 @@ import { runTermOfServiceFormatTest } from "./test-tos-format.js";
import { runWalletBackupBasicTest } from "./test-wallet-backup-basic.js";
import { runWalletBackupDoublespendTest } from "./test-wallet-backup-doublespend.js";
import { runWalletBalanceNotificationsTest } from "./test-wallet-balance-notifications.js";
+import { runWalletBalanceZeroTest } from "./test-wallet-balance-zero.js";
import { runWalletBalanceTest } from "./test-wallet-balance.js";
import { runWalletCliTerminationTest } from "./test-wallet-cli-termination.js";
import { runWalletConfigTest } from "./test-wallet-config.js";
@@ -202,6 +203,7 @@ const allTests: TestMainFunction[] = [
runWalletConfigTest,
runWalletObservabilityTest,
runWalletDevExperimentsTest,
+ runWalletBalanceZeroTest,
];
export interface TestRunSpec {