refactor URL generators

This commit is contained in:
El RIDO 2024-01-07 16:06:24 +01:00
parent d493ba7337
commit fd82b937a9
2 changed files with 15 additions and 21 deletions

View file

@ -80,7 +80,7 @@ describe('Model', function () {
jsc.property(
'returns the query string without separator, if any',
common.jscUrl(),
common.jscUrl(true, false),
jsc.tuple(new Array(16).fill(common.jscHexString)),
jsc.array(common.jscQueryString()),
jsc.array(common.jscQueryString()),
@ -184,7 +184,7 @@ describe('Model', function () {
);
jsc.property(
'throws exception on empty fragment of the URL',
common.jscUrl(false, false),
common.jscUrl(false),
function (url) {
let clean = jsdom('', {url: common.urlToString(url)}),
result = false;