style: Improve readability of edge case numbers in tests
This commit is contained in:
+2
-2
@@ -172,8 +172,8 @@ const edgeCaseNumbers = [
|
|||||||
Number.MAX_SAFE_INTEGER,
|
Number.MAX_SAFE_INTEGER,
|
||||||
Number.MIN_SAFE_INTEGER,
|
Number.MIN_SAFE_INTEGER,
|
||||||
Math.PI, Math.E,
|
Math.PI, Math.E,
|
||||||
1e-6, -1e-6, 1e-8, -1e-8,
|
0.000001, -0.000001, 0.00000001, -0.00000001,
|
||||||
1e6, -1e6, 1e8, -1e8,
|
1000000, -1000000, 100000000, -100000000,
|
||||||
0.1+0.2, // floating point fun
|
0.1+0.2, // floating point fun
|
||||||
1/3, 2/3, 0.9999999, 1.0000001
|
1/3, 2/3, 0.9999999, 1.0000001
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user