1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:17:44 +00:00

LibJS: Add a basic test for arguments.callee

This commit is contained in:
Andreas Kling 2021-03-17 21:19:07 +01:00
parent b985fa989e
commit 3217e6237c

View file

@ -0,0 +1,6 @@
test("basic arguments.callee", () => {
var foo = function () {
return arguments.callee;
};
expect(foo()).toBe(foo);
});