mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 10:07:44 +00:00
LibJS: Re-enable "reassignment to const" test
It passes now :^)
This commit is contained in:
parent
f7d64e9fa8
commit
be9df404fd
1 changed files with 1 additions and 2 deletions
|
@ -1,5 +1,4 @@
|
||||||
// I'm not sure how this test passed before the refactor, but it definitely doesn't work at all
|
test("reassignment to const", () => {
|
||||||
test.skip("reassignment to const", () => {
|
|
||||||
const constantValue = 1;
|
const constantValue = 1;
|
||||||
expect(() => {
|
expect(() => {
|
||||||
constantValue = 2;
|
constantValue = 2;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue