please how do I send query params so my test doesn't fail
I would recommend you to read the superagent docs. Most of it's public API is available to supertest. You could probably do something like:
request('http:///the-url.com/some-path').query({ key: 'value' })
Just in case anyone else is wondering, you now nee to query this as:
```
request('http:///the-url.com/some-path')
.get("/")
.query({ key: 'value' })
````
Most helpful comment
I would recommend you to read the superagent docs. Most of it's public API is available to supertest. You could probably do something like: