Skip to content

Commit

Permalink
💚 Stabilize e2e on bigint and duplicates (#5685)
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzzz authored Feb 10, 2025
1 parent ac570d8 commit 963d107
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,13 @@ describe(`ArrayArbitrary (seed: ${seed})`, () => {
expect(out.counterexample).toEqual([[5, 5]]);
});
biasIts('integer', fc.integer());
biasIts('bigint', fc.bigInt());
biasIts(
'bigint',
fc.bigInt({
min: BigInt(0),
max: (BigInt(1) << BigInt(64)) - BigInt(1),
}),
);
});
});

Expand Down

0 comments on commit 963d107

Please sign in to comment.