mirror of
https://github.com/RGBCube/serenity
synced 2025-07-02 20:32:12 +00:00
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
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
Add a link
Reference in a new issue