Skip to content

Commit 904bfd1

Browse files
committed
chore: increase timeout
1 parent 2b27d90 commit 904bfd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

__tests__/storage/storage.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ describe('handleStop', () => {
3636
it('should work with memory store', async () => {
3737
const store = new MemoryStore();
3838
await handleStopTest(store);
39-
}, 10000);
39+
}, 20000);
4040

4141
it('should work with leveldb store', async () => {
4242
const walletId = walletUtils.getWalletIdFromXPub(accessData.xpubkey);
4343
const store = new LevelDBStore(walletId, DATA_DIR);
4444
await handleStopTest(store);
45-
}, 10000);
45+
}, 20000);
4646

4747
/**
4848
* @param {IStore} store

0 commit comments

Comments
 (0)