Open rwaldron opened 4 years ago
This appears to only occur locally for me 🤷🏼♂️
I'm able to replicate in node 12, but works fine in node 10. I can't imagine what has changed but I'll dig into it.
Tired: Off by 1 errors Wired: Off by 0.00000000000000000001 errors
Here's the scoop:
In node 10:
Math.pow(10, -4) === 0.0001
but in node 12
Math.pow(10, -4) === 0.00009999999999999999
Appears to be this issue which will be fixed by this commit and will eventually make its way to node.js. If we need to, we can comment out that test for now, or we could just leave this issue open and findable until node has the corrected version of v8.
Thanks for checking into that! I say we take no action on our end and leave this open for folks to easily find.
@dtex I don't understand this failure :|