Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const COMMITTEE_SIZE = VALIDATOR_COUNT;
const INITIAL_KEYSTORE_COUNT = 3;

describe('e2e_reload_keystore', () => {
jest.setTimeout(300_000);
jest.setTimeout(540_000);

let teardown: () => Promise<void>;
let aztecNode: AztecNode;
Expand Down Expand Up @@ -81,7 +81,7 @@ describe('e2e_reload_keystore', () => {
attester: EthAddress.fromString(validatorAddresses[i]),
withdrawer: EthAddress.fromString(validatorAddresses[i]),
privateKey: key,
bn254SecretKey: new SecretValue(Fr.random().toBigInt()),
bn254SecretKey: new SecretValue(new Fr(i + 1).toBigInt()),
}));

({
Expand All @@ -105,7 +105,7 @@ describe('e2e_reload_keystore', () => {
});

afterAll(async () => {
await teardown();
await teardown?.();
await rm(keyStoreDirectory, { recursive: true, force: true });
});

Expand Down
Loading