Skip to content

Commit

Permalink
test: enable test to generate Number.MAX_SAFE_INTEGER (#3393)
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT authored Feb 9, 2025
1 parent 9e13953 commit 9c42195
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions test/modules/number.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -710,8 +710,7 @@ describe('number', () => {
expect(actual).toBe(0);
});

// TODO @ST-DDT 2023-10-12: This requires a randomizer with 53 bits of precision
it.todo('should be able to return MAX_SAFE_INTEGER', () => {
it('should be able to return MAX_SAFE_INTEGER', () => {
randomizer.next = () => MERSENNE_MAX_VALUE;
const actual = customFaker.number.int();
expect(actual).toBe(Number.MAX_SAFE_INTEGER);
Expand Down
2 changes: 1 addition & 1 deletion test/utils/mersenne-test-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ export const TWISTER_53CO_MAX_VALUE = 0.9999999999999999;
/**
* The maximum value that can be returned by `next()`.
*/
export const MERSENNE_MAX_VALUE = TWISTER_32CO_MAX_VALUE;
export const MERSENNE_MAX_VALUE = TWISTER_53CO_MAX_VALUE;

0 comments on commit 9c42195

Please sign in to comment.