diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Tests/functions/function-hoisting.js')
-rw-r--r-- | Userland/Libraries/LibJS/Tests/functions/function-hoisting.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Tests/functions/function-hoisting.js b/Userland/Libraries/LibJS/Tests/functions/function-hoisting.js index 3345cc4d5f..f2889c6f9d 100644 --- a/Userland/Libraries/LibJS/Tests/functions/function-hoisting.js +++ b/Userland/Libraries/LibJS/Tests/functions/function-hoisting.js @@ -8,7 +8,7 @@ test("basic functionality", () => { }); // First two calls produce a ReferenceError, but the declarations should be hoisted -test.skip("functions are hoisted across non-lexical scopes", () => { +test("functions are hoisted across non-lexical scopes", () => { expect(scopedHoisted).toBeUndefined(); expect(callScopedHoisted).toBeUndefined(); { |