X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Ftest-utils.js;h=116b1942b96829273eedb2d08ff83691ff61aa6f;hb=42c1da2ebcb24bed03bbce17c0e32c8c09f9f7e8;hp=a3affb61c91899d187dd91e97f2693cfa7340d0d;hpb=f931db5c2405593ceeef6e3ea86c784e6cf82165;p=poolifier.git diff --git a/tests/test-utils.js b/tests/test-utils.js index a3affb61..116b1942 100644 --- a/tests/test-utils.js +++ b/tests/test-utils.js @@ -36,9 +36,12 @@ class TestUtils { }) } - static generateRandomInteger (max, min = 0) { + static generateRandomInteger (max = Number.MAX_SAFE_INTEGER, min = 0) { + if (max < min || max < 0 || min < 0) { + throw new RangeError('Invalid interval') + } max = Math.floor(max) - if (min) { + if (min != null && min !== 0) { min = Math.ceil(min) return Math.floor(Math.random() * (max - min + 1)) + min }