diff --git a/Userland/Libraries/LibJS/Tests/this-value-strict.js b/Userland/Libraries/LibJS/Tests/this-value-strict.js index 8d9bf587aa..e59ef1eec3 100644 --- a/Userland/Libraries/LibJS/Tests/this-value-strict.js +++ b/Userland/Libraries/LibJS/Tests/this-value-strict.js @@ -358,7 +358,7 @@ describe("derived classes which access this before super should fail", () => { }).toThrowWithMessage(ReferenceError, "|this| has not been initialized"); }); - test.skip("access of this via a eval in arrow function", () => { + test("access of this via a eval in arrow function", () => { class IncorrectConstructor extends Base { constructor() { const arrow = () => eval("() => this")(); diff --git a/Userland/Libraries/LibJS/Tests/this-value.js b/Userland/Libraries/LibJS/Tests/this-value.js index 73571e9e84..619dce427f 100644 --- a/Userland/Libraries/LibJS/Tests/this-value.js +++ b/Userland/Libraries/LibJS/Tests/this-value.js @@ -356,7 +356,7 @@ describe("derived classes which access this before super should fail", () => { }).toThrowWithMessage(ReferenceError, "|this| has not been initialized"); }); - test.skip("access of this via a eval in arrow function", () => { + test("access of this via a eval in arrow function", () => { class IncorrectConstructor extends Base { constructor() { const arrow = () => eval("() => this")();