We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7de73c commit bd20923Copy full SHA for bd20923
tests/tests.js
@@ -92,7 +92,7 @@ $(function() {
92
deepEqual($('<a href="/foo?">link</a>').querystring(), {}, "With no querystring");
93
deepEqual($('<a href="/foo?name=John">link</a>').querystring(), {name: "John"}, "With querystring");
94
deepEqual($('<a href="http://google.com/?name=John">link</a>').querystring(), {name: "John"}, "With domains prefix.");
95
- // deepEqual($('<a href="/foo">link</a>').querystring(), {}, "With no ?");
+ deepEqual($('<a href="/foo">link</a>').querystring(), {}, "With no ?");
96
});
97
test("set link querystring existing", function() {
98
equals(
0 commit comments