Skip to content

Commit

Permalink
Merge pull request #289 from balancer/create-test-timeout
Browse files Browse the repository at this point in the history
Bump create pool test timeout
  • Loading branch information
brunoguerios authored Mar 21, 2024
2 parents a860e51 + 33b23c6 commit 5e4ef5f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/sour-hornets-pretend.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@balancer/sdk": patch
---

Bump create pool test timeout
6 changes: 3 additions & 3 deletions test/v3/createPool/weighted.integration.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// pnpm test -- createPool/weighted.integration.test.ts
// pnpm test -- v3/createPool/weighted.integration.test.ts

import {
Address,
Expand Down Expand Up @@ -34,7 +34,7 @@ describe('Create Weighted Pool tests', () => {
const client = createTestClient({
mode: 'anvil',
chain: CHAINS[chainId],
transport: http(rpcUrl, { timeout: 20_000 }),
transport: http(rpcUrl, { timeout: 120_000 }),
})
.extend(publicActions)
.extend(walletActions);
Expand Down Expand Up @@ -74,5 +74,5 @@ describe('Create Weighted Pool tests', () => {
createPoolInput: createWeightedPoolInput,
});
expect(poolAddress).to.not.be.undefined;
});
}, 120_000);
});

0 comments on commit 5e4ef5f

Please sign in to comment.