summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorspeles <speles@mail.ua>2021-02-26 00:38:34 +0200
committerAndreas Kling <kling@serenityos.org>2021-02-26 16:59:37 +0100
commitbe9df404fd180e1b3cab0c1bddce1f589de8e9f0 (patch)
tree0578e2a665f35d377ff677b4cc26a03844a354fa /Userland
parentf7d64e9fa8998b69efe0d0d729c8de98d94efacc (diff)
downloadserenity-be9df404fd180e1b3cab0c1bddce1f589de8e9f0.zip
LibJS: Re-enable "reassignment to const" test
It passes now :^)
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Libraries/LibJS/Tests/const-reassignment.js3
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;