From 5a1f9165951c8b1185e7910942ec0458b5a3ee58 Mon Sep 17 00:00:00 2001 From: Dan Oved Date: Wed, 10 Apr 2024 10:37:55 -0400 Subject: [PATCH] Extend timeouts on mints tests (#348) ## Description ## Motivation and Context ## Does this change the ABI/API? - [ ] This changes the ABI/API ## What tests did you add/modify to account for these changes ## Types of changes - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New module / feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) ## Checklist: - [ ] My code follows the code style of this project. - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [ ] i added a changeset to account for this change ## Reviewer Checklist: - [ ] My review includes a symposis of the changes and potential issues - [ ] The code style is enforced - [ ] There are no risky / concerning changes / additions to the PR --- packages/protocol-sdk/src/mints/mints-contracts.test.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/protocol-sdk/src/mints/mints-contracts.test.ts b/packages/protocol-sdk/src/mints/mints-contracts.test.ts index e32c0fbc..4cf6b752 100644 --- a/packages/protocol-sdk/src/mints/mints-contracts.test.ts +++ b/packages/protocol-sdk/src/mints/mints-contracts.test.ts @@ -214,6 +214,7 @@ describe("MINTs collecting and redeeming.", () => { expect(totalMintsBalance).toEqual(initialMintsQuantityToMint); }, + 20_000, ); anvilTest( "can use MINTSs to collect premint and non-premint", @@ -362,6 +363,7 @@ describe("MINTs collecting and redeeming.", () => { (firstQuantityToCollect + secondQuantityToCollect), ); }, + 20_000, ); anvilTest( "can decode errors from transferBatchToManagerAndCall", @@ -440,6 +442,7 @@ describe("MINTs collecting and redeeming.", () => { } } }, + 20_000, ); anvilTest( "can use MINTs to gaslessly collect premint", @@ -546,6 +549,7 @@ describe("MINTs collecting and redeeming.", () => { ), ).toBe(initialMintsBalance - premintQuantityToCollect); }, + 20_000, ); anvilTest( @@ -715,5 +719,6 @@ describe("MINTs collecting and redeeming.", () => { expect(tokenBalance).toBe(quantityToMintOn1155 * 2n); }, + 20_000, ); });