1 2 3 4 5 6
test("basic arguments.callee", () => { var foo = function () { return arguments.callee; }; expect(foo()).toBe(foo); });