Apply dependencies update
[poolifier.git] / tests / test-utils.js
index f4cb38b23cb1ca63c5c6e17109af45d59f66dc0d..116b1942b96829273eedb2d08ff83691ff61aa6f 100644 (file)
@@ -37,14 +37,11 @@ class TestUtils {
   }
 
   static generateRandomInteger (max = Number.MAX_SAFE_INTEGER, min = 0) {
-    if (max < 0) {
+    if (max < min || max < 0 || min < 0) {
       throw new RangeError('Invalid interval')
     }
     max = Math.floor(max)
     if (min != null && min !== 0) {
-      if (max < min || min < 0) {
-        throw new RangeError('Invalid interval')
-      }
       min = Math.ceil(min)
       return Math.floor(Math.random() * (max - min + 1)) + min
     }