Skip to content

Commit

Permalink
fix: integ tests (#221)
Browse files Browse the repository at this point in the history
fix integ tests
  • Loading branch information
ConjunctiveNormalForm authored Jun 13, 2023
1 parent e6fba69 commit f47040a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integ/order.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,13 +251,13 @@ describe('/dutch-auction/order', () => {
}
)
expect(postResponse.status).toEqual(201)
const newGetResponse = await axios.get(`${URL}dutch-auction/nonce?address=${aliceAddress}`)
const newGetResponse = await axios.get(`${URL}dutch-auction/nonce?address=${aliceAddress}&chainId=12341234`)
expect(newGetResponse.status).toEqual(200)
const newNonce = BigNumber.from(newGetResponse.data.nonce)
expect(newNonce.eq(nonce.add(1))).toBeTruthy()
return { order, signature }
} catch (err: any) {
console.log(err)
console.log(err.message)
throw err
}
}
Expand Down

0 comments on commit f47040a

Please sign in to comment.