Skip to content

Commit 072243d

Browse files
committed
increase timeout in jasmine unit test for wallet deserialize/decryption
1 parent 9169c09 commit 072243d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/amino/src/secp256k1hdwallet.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ describe("Secp256k1HdWallet", () => {
7777
pubkey: defaultPubkey,
7878
},
7979
]);
80-
});
80+
}, 90000);
8181

8282
it("can restore multiple accounts", async () => {
8383
const mnemonic =
@@ -123,7 +123,7 @@ describe("Secp256k1HdWallet", () => {
123123
address: "wasm1hsm76p4ahyhl5yh3ve9ur49r5kemhp2r93f89d",
124124
},
125125
]);
126-
});
126+
}, 90000);
127127
});
128128

129129
describe("deserializeWithEncryptionKey", () => {

packages/proto-signing/src/directsecp256k1hdwallet.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ describe("DirectSecp256k1HdWallet", () => {
7777
pubkey: defaultPubkey,
7878
},
7979
]);
80-
});
80+
}, 90000);
8181

8282
it("can restore multiple accounts", async () => {
8383
const mnemonic =
@@ -123,7 +123,7 @@ describe("DirectSecp256k1HdWallet", () => {
123123
address: "wasm1hsm76p4ahyhl5yh3ve9ur49r5kemhp2r93f89d",
124124
},
125125
]);
126-
});
126+
}, 90000);
127127
});
128128

129129
describe("deserializeWithEncryptionKey", () => {

0 commit comments

Comments
 (0)