()
| 99 | |
| 100 | Deno.test("randomBetween() never returns max, even if the prng returns its max value", () => { |
| 101 | const prng = () => 0.9999999999999999; |
| 102 | const result = randomBetween(1, 2, { prng }); |
| 103 | assertNotEquals(result, 2); |
| 104 | }); |
no outgoing calls
no test coverage detected