mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
Libraries: Move to Userland/Libraries/
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
test("basic functionality", () => {
|
||||
function foo(a, b) {
|
||||
return a + b;
|
||||
}
|
||||
|
||||
expect(foo()).toBeNaN();
|
||||
expect(foo(1)).toBeNaN();
|
||||
expect(foo(2, 3)).toBe(5);
|
||||
expect(foo(2, 3, 4)).toBe(5);
|
||||
});
|
||||
Reference in New Issue
Block a user