diff options
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Libraries/LibJS/Tests/const-reassignment.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Userland/Libraries/LibJS/Tests/const-reassignment.js b/Userland/Libraries/LibJS/Tests/const-reassignment.js index 1c66fc24ce..f336407435 100644 --- a/Userland/Libraries/LibJS/Tests/const-reassignment.js +++ b/Userland/Libraries/LibJS/Tests/const-reassignment.js @@ -1,5 +1,4 @@ -// I'm not sure how this test passed before the refactor, but it definitely doesn't work at all -test.skip("reassignment to const", () => { +test("reassignment to const", () => { const constantValue = 1; expect(() => { constantValue = 2; |