Previously the plugin was relying on qs to automatically encode query string params but once tests related to encoded params were added, the tests were failing.
The fix for this was to disable encoding in qs and instead use encodeURIComponent directly in the plugin.
Previously the plugin was relying on
qs
to automatically encode query string params but once tests related to encoded params were added, the tests were failing.The fix for this was to disable encoding in
qs
and instead useencodeURIComponent
directly in the plugin.