Skip to content

Commit 9571e8c

Browse files
authored
Merge pull request #186 from AztecProtocol/zkpedro/testnet_tests_fix
adding a timeout to a failing test wait()
2 parents 948a4be + 09a6df5 commit 9571e8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/e2e/accounts.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ describe("Accounts", () => {
164164
}),
165165
);
166166

167-
const receiptAfterMined = await tx.wait({ wallet: deployerWallet });
167+
const receiptAfterMined = await tx.wait({ wallet: deployerWallet, timeout: getTimeouts().deployTimeout });
168168
expect(await pxe.getContractMetadata(deploymentData.address)).toBeDefined();
169169
expect((await pxe.getContractMetadata(deploymentData.address)).contractInstance).toBeTruthy();
170170
expect(receiptAfterMined).toEqual(

0 commit comments

Comments
 (0)