We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9aee736 commit 03387ccCopy full SHA for 03387cc
packages/core/src/lib/testUtils.ts
@@ -49,6 +49,9 @@ export const mockWallet = async <Variation extends Wallet>(
49
50
await walletModules.setup();
51
52
+ // await 300ms to allow wallet modules to initialize
53
+ await new Promise((resolve) => setTimeout(resolve, 300));
54
+
55
const { modules } = store.getState();
56
const wallet = await walletModules.getWallet<Variation>(modules[0].id);
57
0 commit comments