Skip to content

Commit

Permalink
Fix the test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Feb 2, 2024
1 parent d2f7135 commit 41393fe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {LocalKeystoreDefinition} from "../../../../../src/cmds/validator/keymana
const numberOfSigners = 10;

describe("keystoreCache", () => {
vi.setConfig({testTimeout: 10000, hookTimeout: 10000});
vi.setConfig({testTimeout: 10000, hookTimeout: 50000});
let definitions: LocalKeystoreDefinition[];
let signers: SignerLocal[];
let secretKeys: Uint8Array[];
Expand Down Expand Up @@ -51,7 +51,7 @@ describe("keystoreCache", () => {
passwords.push(password);
secretKeys.push(secretKey.toBytes());
}
}, 50000);
});

describe("writeKeystoreCache", () => {
it("should write a valid keystore cache file", async () => {
Expand Down

0 comments on commit 41393fe

Please sign in to comment.