Skip to content

Commit

Permalink
add quote base token
Browse files Browse the repository at this point in the history
  • Loading branch information
thanhson1085 committed Feb 19, 2020
1 parent c2d92c9 commit 83de3e6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/tomodex.js
Expand Up @@ -34,7 +34,12 @@ describe('TomoDex', () => {
let url = urljoin(uri, 'api/trades')
chai.request(url)
.get('')
.query({ sortType: 'desc', sortBy: 'time' })
.query({
baseToken: config.get('tomodex.baseToken'),
quoteToken: config.get('tomodex.quoteToken'),
sortType: 'desc',
sortBy: 'time'
})
.end((err, res) => {
res.should.have.status(200)
res.should.be.json
Expand Down

0 comments on commit 83de3e6

Please sign in to comment.