mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-03 04:52:06 +02:00
5 lines
113 B
JavaScript
5 lines
113 B
JavaScript
test("basic functionality", () => {
|
|
expect(Math.sqrt).toHaveLength(1);
|
|
expect(Math.sqrt(9)).toBe(3);
|
|
});
|