Hi there.
I can’t work out how to send two parameters to a chai test that have the same name. It only seems to recognise the second parameter.
e.g.
chai.request(server)
.get('/api/widgets')
.query({wtype 'nits',wtype:'gnats',insect:true})
.end(function(err, res){
var insects = res.body
console.log(insects)
Any ideas?