-
-
Notifications
You must be signed in to change notification settings - Fork 11.4k
fix: flaky snapshot tests precision issues for floating point numbers #8049
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Ignored Deployment
|
Coverage Report
File CoverageNo changed files found. |
| }, | ||
| test(val) { | ||
| return ( | ||
| typeof val === "number" && !Number.isNaN(val) && !Number.isInteger(val) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| typeof val === "number" && !Number.isNaN(val) && !Number.isInteger(val) | |
| typeof val === "number" && !Number.isNaN(val) && !Number.isInteger(val) && Number.isFinite(val) |
Infinity
(line length won't lint)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, tho that's a different type

Uh oh!
There was an error while loading. Please reload this page.