Skip to content

Commit

Permalink
test(proof): increase timeout for tests generating proofs (#762)
Browse files Browse the repository at this point in the history
re #761
  • Loading branch information
vplasencia authored Apr 30, 2024
1 parent 5ced7db commit 82bc47f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/proof/tests/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ describe("Proof", () => {

expect(typeof proof).toBe("object")
expect(BigInt(proof.merkleTreeRoot)).toBe(group.root)
}, 20000)
}, 70000)

it("Should generate a Semaphore proof passing a Merkle proof instead of a group", async () => {
const group = new Group([1n, 2n, identity.commitment])
Expand All @@ -57,7 +57,7 @@ describe("Proof", () => {

expect(typeof proof).toBe("object")
expect(BigInt(proof.merkleTreeRoot)).toBe(group.root)
}, 20000)
}, 70000)
})

describe("# verifyProof", () => {
Expand Down

0 comments on commit 82bc47f

Please sign in to comment.