aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-harness/src/integrationtests
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-02-02 20:37:15 +0100
committerFlorian Dold <florian@dold.me>2023-02-02 20:37:15 +0100
commit9d6613619e052aba429e042a25744f1160950d15 (patch)
tree4ee187d3c06eee7ed790492b515678a1d7416ec3 /packages/taler-harness/src/integrationtests
parent96101238afb82d200cf9d5005ffc2fc0391f23e4 (diff)
downloadwallet-core-9d6613619e052aba429e042a25744f1160950d15.tar.xz
harness,wallet-cli: allow in-memory DB
Diffstat (limited to 'packages/taler-harness/src/integrationtests')
-rw-r--r--packages/taler-harness/src/integrationtests/test-wallet-notifications.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/taler-harness/src/integrationtests/test-wallet-notifications.ts b/packages/taler-harness/src/integrationtests/test-wallet-notifications.ts
index 23c71ea2f..9f591b9d0 100644
--- a/packages/taler-harness/src/integrationtests/test-wallet-notifications.ts
+++ b/packages/taler-harness/src/integrationtests/test-wallet-notifications.ts
@@ -107,7 +107,10 @@ export async function runWalletNotificationsTest(t: GlobalTestState) {
console.log("setup done!");
- const walletService = new WalletService(t, "wallet");
+ const walletService = new WalletService(t, {
+ name: "wallet",
+ useInMemoryDb: true,
+ });
await walletService.start();
await walletService.pingUntilAvailable();