LibJS: Mark a test-js test as always passing
This passes in bytecode mode, which is now the only mode.
This commit is contained in:
parent
9c3e9e8981
commit
854330ec73
Notes:
sideshowbarker
2024-07-17 14:33:07 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/854330ec73 Pull-request: https://github.com/SerenityOS/serenity/pull/20461 Reviewed-by: https://github.com/Lubrsi ✅
1 changed files with 1 additions and 2 deletions
|
@ -197,8 +197,7 @@ test("deleting a symbol returned by @@toPrimitive", () => {
|
|||
expect(obj[Symbol.toStringTag]).toBeUndefined();
|
||||
});
|
||||
|
||||
// FIXME: This currently does not work with the AST interpreter, but works with Bytecode.
|
||||
test.xfailIf(!isBytecodeInterpreterEnabled(), "delete always evaluates the lhs", () => {
|
||||
test("delete always evaluates the lhs", () => {
|
||||
const obj = { prop: 1 };
|
||||
let called = false;
|
||||
function a() {
|
||||
|
|
Loading…
Add table
Reference in a new issue