mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
6 lines
140 B
JavaScript
6 lines
140 B
JavaScript
test("basic arguments.callee", () => {
|
|
var foo = function () {
|
|
return arguments.callee;
|
|
};
|
|
expect(foo()).toBe(foo);
|
|
});
|