2020-07-04 10:09:48 -07:00
|
|
|
test("basic functionality", () => {
|
2020-07-06 07:37:45 -07:00
|
|
|
// Ensuring it's the same function as the global
|
|
|
|
|
// parseFloat() is enough as that already has tests :^)
|
|
|
|
|
expect(Number.parseFloat).toBe(parseFloat);
|
2020-07-04 10:09:48 -07:00
|
|
|
});
|