We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e23a9e commit 509367dCopy full SHA for 509367d
test.js
@@ -59,7 +59,7 @@ describe('query-stringifier', function () {
59
expect(parsed).to.have.keys(['arr']);
60
expect(parsed).to.deep.equal({ arr: ['2', '3', '1'] });
61
});
62
- it.only('converts query string with duplicate keys', function() {
+ it('converts query string with duplicate keys', function() {
63
var parsed = qs.parse('itemIds=1&itemIds=2');
64
expect(parsed).to.be.an('object');
65
expect(parsed).to.have.keys(['itemIds']);
0 commit comments