Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zielvna committed Jul 5, 2024
1 parent 536fee0 commit 221fc1f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions sdk/tests/get-all.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ describe('get-all', async () => {
})
})

it('get all pool keys above single query limit works', async function (done) {
this.timeout(30000)
it('get all pool keys above single query limit works', async function () {
this.timeout(120000)

const feeTiers = Array.from(Array(100).keys()).map(i =>
newFeeTier(BigInt(i + 1), BigInt(i + 1))
Expand All @@ -87,8 +87,6 @@ describe('get-all', async () => {
poolKeys.map((poolKey, index) => {
assert.deepEqual(poolKey, expectedPoolKeys[index])
})

done()
})

it('get all positions works', async function () {
Expand Down

0 comments on commit 221fc1f

Please sign in to comment.