Number.parseInt.js 195 B

12345
  1. test("basic functionality", () => {
  2. // Ensuring it's the same function as the global
  3. // parseInt() is enough as that already has tests :^)
  4. expect(Number.parseInt).toBe(parseInt);
  5. });