Newer
Older
minerva / Userland / Libraries / LibJS / Tests / builtins / Math / Math.sqrt.js
@minerva minerva on 13 Jul 113 bytes Initial commit
test("basic functionality", () => {
    expect(Math.sqrt).toHaveLength(1);
    expect(Math.sqrt(9)).toBe(3);
});