Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix flaky arbitrary property generation for the
id
function test
The test for `id` uses fast-check to generate arbitrary properties, and could potentially generate `NaN` as a property. `NaN` is not strictly equal to itself (using `===`), which could cause the test to fail. This applies a filter to the arbitrary property generation to disallow `NaN`.
- Loading branch information