Newer
Older
minerva / Userland / Libraries / LibJS / Tests / arguments-callee.js
@minerva minerva on 13 Jul 140 bytes Initial commit
test("basic arguments.callee", () => {
    var foo = function () {
        return arguments.callee;
    };
    expect(foo()).toBe(foo);
});