From 0fda0181d3522b8cf660162bb028863d498e9446 Mon Sep 17 00:00:00 2001 From: Nodari Chkuaselidze Date: Mon, 1 Apr 2024 20:14:09 +0400 Subject: [PATCH] test: use disk for wallet rpc tests. bdb in-memory rbt snapshotting is too slow on node.js v14 and v16. --- test/wallet-rpc-test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/wallet-rpc-test.js b/test/wallet-rpc-test.js index 81b8e94af..59ee1ab5d 100644 --- a/test/wallet-rpc-test.js +++ b/test/wallet-rpc-test.js @@ -50,7 +50,8 @@ describe('Wallet RPC Methods', function() { network: network.type, apiKey: 'bar', walletAuth: true, - wallet: true + wallet: true, + memory: false }); wclient = nodeCtx.wclient;