Math.sqrt.js 113 B

1234
  1. test("basic functionality", () => {
  2. expect(Math.sqrt).toHaveLength(1);
  3. expect(Math.sqrt(9)).toBe(3);
  4. });