Integrate Wallaby (#66)

This commit is contained in:
Andrew Prifer 2022-02-21 13:33:08 +01:00 committed by GitHub
parent defb538561
commit bb2c7de299
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 32 additions and 9 deletions

View file

@ -68,11 +68,11 @@ describe(`numberRoundingUtils()`, () => {
sign
)
}
for (let i = 0; i < 2000; i++) {
const from = toPrecision(getRandomNumber())
const to = toPrecision(getRandomNumber())
test(`roundestNumberBetween() => fuzzy`, () => {
for (let i = 0; i < 2000; i++) {
const from = toPrecision(getRandomNumber())
const to = toPrecision(getRandomNumber())
test(`roundestNumberBetween(${from}, ${to}) => fuzzy`, () => {
const result = roundestNumberBetween(from, to)
if (from < to) {
if (result < from || result > to) {
@ -83,8 +83,8 @@ describe(`numberRoundingUtils()`, () => {
throw new Error(`Invalid: ${to} ${from} ${result}`)
}
}
})
}
}
})
})
describe(`roundestIntegerBetween`, () => {
example(roundestIntegerBetween, [-1, 6], 0, {})