summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Tests/arguments-callee.js
blob: 986c63fcc26d57a7c8756963777dc9a1c34143a5 (plain)
1
2
3
4
5
6
test("basic arguments.callee", () => {
    var foo = function () {
        return arguments.callee;
    };
    expect(foo()).toBe(foo);
});