remove gremlin

This commit is contained in:
carson 2020-09-29 16:20:12 -06:00
parent b87c3a2c3a
commit a9ffe0e617

View File

@ -111,7 +111,7 @@ describe("Core htmx Parameter Handling", function() {
})
it('correctly URL escapes values', function () {
htmx._("urlEncode")({}).should.equal("");``
htmx._("urlEncode")({}).should.equal("");
htmx._("urlEncode")({"foo": "bar"}).should.equal("foo=bar");
htmx._("urlEncode")({"foo": "bar", "do" : "rey"}).should.equal("foo=bar&do=rey");
htmx._("urlEncode")({"foo": "bar", "do" : ["rey", "blah"]}).should.equal("foo=bar&do=rey&do=blah");