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:
Timothy Flynn 2023-08-09 15:12:04 -04:00 committed by Luke Wilde
parent 9c3e9e8981
commit 854330ec73
Notes: sideshowbarker 2024-07-17 14:33:07 +09:00

View file

@ -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() {